12

我对 XAML 还很陌生,但很喜欢学习它。我真正苦苦挣扎的事情是将属性绑定到DataTemplate.

我创建了一个简单的 WPF 示例来(希望)解释我的问题。

在这个示例中,我试图将a中的Visibility属性绑定到我的视图模型中的属性。(使用此场景纯粹用于学习/演示。)CheckBoxDataTemplate

我有一个名为 的简单Item数据模型,但在此示例中几乎没有相关性。

class Item : INotifyPropertyChanged
{

    // Fields...
    private bool _IsRequired;
    private string _ItemName;

还有一个相当简单的视图模型,名为 ItemViewModel。

class ItemViewModel : INotifyPropertyChanged
{
    private ObservableCollection<Item> _Items;
    private bool _IsCheckBoxChecked;
    private bool _IsCheckBoxVisible;

    public ObservableCollection<Item> Items
    {
        get { return _Items; }
        set { _Items = value; }
    }


    public bool IsCheckBoxChecked
    {
        get { return _IsCheckBoxChecked; }
        set
        {
            if (_IsCheckBoxChecked == value)
                return;
            _IsCheckBoxChecked = value;
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs("IsCheckBoxChecked"));
                PropertyChanged(this, new PropertyChangedEventArgs("IsCheckBoxVisible"));
            }
        }
    }


    public bool IsCheckBoxVisible
    {
        get { return !_IsCheckBoxChecked; }
        set
        {
            if (_IsCheckBoxVisible == value)
                return;
            _IsCheckBoxVisible = value;
            if (PropertyChanged != null)
                PropertyChanged(this, new PropertyChangedEventArgs("IsCheckBoxVisible"));
        }

INotifyPropertyChanged(为简洁起见,省略了构造函数和实现。)

MainPage.xaml 中的控件布局如下。

<Window.Resources>
    <local:VisibilityConverter x:Key="VisibilityConverter"/>
</Window.Resources>

<Window.DataContext>
    <local:ItemViewModel/>
</Window.DataContext>

<Grid>
    <StackPanel>
        <CheckBox x:Name="checkBox" Content="Hide CheckBoxes"  FontSize="14"  IsChecked="{Binding IsCheckBoxChecked, Mode=TwoWay}" />
        <ListView ItemsSource="{Binding Items}" HorizontalContentAlignment="Stretch" >
            <ListView.ItemTemplate >
            <DataTemplate>
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="*"/>
                        <ColumnDefinition Width="Auto"/>
                    </Grid.ColumnDefinitions>
                    <TextBlock Text="{Binding ItemName}"/>
                        <CheckBox  Grid.Column="1" Visibility="{Binding IsCheckBoxVisible, Converter={StaticResource VisibilityConverter}}"   >
                            <CheckBox.DataContext>
                                <local:ItemViewModel/>
                            </CheckBox.DataContext>
                        </CheckBox>
                    </Grid>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>
       <StackPanel Orientation="Horizontal" Margin="4,4,0,0">
        <TextBlock Text="IsCheckBoxVisible:"/>
            <TextBlock Text="{Binding IsCheckBoxVisible}" Margin="4,0,0,0" FontWeight="Bold" />
        </StackPanel >
        <Button Content="Button" Visibility="{Binding IsCheckBoxVisible, Converter={StaticResource VisibilityConverter}}" Margin="4,4,4,4"/>
    </StackPanel>

</Grid>

“隐藏复选框”复选框绑定IsCheckBoxChecked并用于更新IsCheckBoxVisible. 我还在下方添加了一些额外的控件DataTemplate来证明(对我自己而言)一切正常。)

我还实现了 Jeff Wilcox 的值转换器。(谢谢。)http://www.jeff.wilcox.name/2008/07/visibility-type-converter/

当我运行应用程序时,选中和取消选中“隐藏复选框”,DataTemplate按预期控制函数外部,但是,Checkbox数据模板内部保持不变。

我在以下方面取得了成功:

IsVisible="{Binding IsChecked, Converter={StaticResource VisibilityConverter}, ElementName=checkBox}"

但我不只是试图模仿另一个控件,而是根据一个值做出决定。

我非常感谢您提供的任何帮助或建议。

谢谢你。

4

1 回答 1

25

当您在 DataTemplate 中时,您的 DataContext 是数据模板化对象,在本例中是一个Item. 因此,DataTemplate 中 CheckBox 的 DataContext 是一个Item,而不是你的ItemViewModel. 您可以通过您的 看到这一点<TextBlock Text="{Binding ItemName}"/>,它绑定到Item类上的一个属性。IsCheckBoxVisible 的绑定试图在 上找到一个名为 IsCheckBoxVisible 的属性Item

有几种方法可以解决这个问题,但到目前为止最简单的是这样做:

在您的窗口(在 xaml 中)上,给它和 x:Name。例如:

<Window [...blah blah...]
        x:Name="MyWindow">

将绑定更改为如下所示:

<CheckBox Grid.Column="1"
          Visibility="{Binding DataContext.IsCheckBoxVisible, ElementName=MyWindow, Converter={StaticResource VisibilityConverter}}">

我们使用 Window 作为 Binding 的源,然后查看它的 DataContext 属性(应该是你的ItemViewModel,然后拉出 IsCheckBoxVisible 属性。

如果您想要更高级的东西,另一种选择是使用代理对象来引用您的 DataContext。请参阅有关 DataContextProxy 的这篇文章

于 2013-04-02T04:13:21.863 回答