1

我想绑定到不同对象的 xaml 文件中有几个项目。我展示了一个带有两个按钮的示例:

<Button Content="Edit Operators" 
Command="{Binding ElementName=treeRevisions,
Path=SelectedItem.WorkOrderRev.Operators.EditCommand}" CommandParameter="" />
<Button Content="Edit MyData" 
Command="{Binding ElementName=treeRevisions,
Path=SelectedItem.WorkOrderRev.MyData.EditCommand}" CommandParameter="" />

如您所见,两个按钮的文本“Binding ElementName=treeRevisions, Path=SelectedItem.WorkOrderRev”是相同的。它有效,我可以像这样使用它,但我也有很多其他控件。有什么方法可以缩短它并附加“.Operators.EditCommand”等吗?我到处寻找解决方案,但我没有找到任何东西。

4

2 回答 2

0

有几种方法可以做到这一点。我会给你一个非常棘手的。警告这对于 wpf pro 来说是一个疯狂的答案,但它确实有效。哈哈哈……

        public MainWindow()
        {
            InitializeComponent();
            this.DataContext = new { D = "Hello" };
        }

        public static bool GetDoMyBinding(DependencyObject obj)
        {
            return (bool)obj.GetValue(DoMyBindingProperty);
        }

        public static void SetDoMyBinding(DependencyObject obj, bool value)
        {
            obj.SetValue(DoMyBindingProperty, value);
        }

        // Using a DependencyProperty as the backing store for DoMyBinding.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty DoMyBindingProperty =
            DependencyProperty.RegisterAttached("DoMyBinding", typeof(bool),  typeof(MainWindow), new PropertyMetadata(false, new PropertyChangedCallback(OnDoMyBindingChanged)));

        private static void OnDoMyBindingChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Binding binding = new Binding("D");
            binding.Mode = BindingMode.OneWay;
            if (d is Button)
            {
                Button b = d as Button;
                b.SetBinding(Button.ContentProperty, binding);
            }
            if (d is TextBlock)
            {
                TextBlock tb = d as TextBlock;
                tb.SetBinding(TextBlock.TextProperty, binding);
            }
        }

您的 XAML 将如下所示:

    <Window x:Class="BindingTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        xmlns:local="clr-namespace:BindingTest">
    <StackPanel>
        <Button local:MainWindow.DoMyBinding="True"/>
        <Button  local:MainWindow.DoMyBinding="True"/>
        <TextBlock  local:MainWindow.DoMyBinding="True" />
    </StackPanel>
    </Window>

结果将是这样的:

在此处输入图像描述

已编辑:相反,您可以放置​​自定义字符串,例如“.Operators.EditCommand”,但您需要更改逻辑。

玩得开心。

于 2013-03-08T23:39:24.450 回答
0

我测试了一些不同的解决方案,发现了一个非常简单的解决方案。我在周围的 Grid 上设置 DataContext,如下所示:

    <Grid DataContext="{Binding ElementName=treeRevisions, Path=SelectedItem.WorkOrderRev.PrintData}">

然后我可以使用这样的缩写:

    <TextBox Height="23" HorizontalAlignment="Left" Margin="103,63,0,0" Name="txtDescription" VerticalAlignment="Top" Width="120" 
     IsEnabled="{Binding Path=UnLocked, UpdateSourceTrigger=PropertyChanged, Mode=OneWay}"
     IsReadOnly="{Binding Path=Locked, UpdateSourceTrigger=PropertyChanged, Mode=OneWay}"
     Text="{Binding Path=TableData.Rows[0][description], UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
     />

其中 Locked、UnLocked 和 TableData 是 SelectedItem.WorkOrderRev.PrintData 的属性。

于 2013-03-26T13:22:29.147 回答