使用ItemSource绑定访问ListView中的另一个datacontext

时间:2015-12-12 11:37:03

标签: c# xaml listview mvvm uwp

我正在使用XAML处理MVVM项目。 在使用ItemSource绑定的ListView内部操作时,我在访问外部元素的属性时遇到问题。

XAML:

<ListView x:Name="BibTexFields" Height="422" ItemsSource="{Binding BibTexFields}">
    <ListView.ItemTemplate>
        <DataTemplate>
           <Grid Width="450">
              <TextBlock Foreground="Black" Text="{Binding Field.Name}"/>
              <CheckBox HorizontalAlignment="Right" IsChecked="{Binding IsChecked, Mode=TwoWay}" Command="{Binding UpdateFilledFieldsCommand}"/> 

BibTexFields是我的ViewModel的一个属性,它也是我的DataContext。 UpdateFilledFieldsCommand

也是如此

XAML:

xmlns:vm="using:StudyConfigurationClient.ViewModels"
mc:Ignorable="d" d:DataContext="{d:DesignInstance vm:CreateStudyViewModel}">

<Grid x:Name="FieldOuter">
    <Border BorderBrush="Gray" BorderThickness="2" Margin="0, 0, 5, 0">

视图模型:

private ObservableCollection<ChosenField> _bibTexFields;
public ObservableCollection<ChosenField> BibTexFields
        {
            get { return _bibTexFields; }
            set
            {
                _bibTexFields = value;
                OnPropertyChanged();
            }
        }

我想要做的是从ViewModel内部访问ListView,以便我可以Command绑定UpdateFilledFieldsCommand属性。

我已尝试研究RelativeSource绑定,但似乎无法使其正常工作。也没有尝试将其绑定到DataContext工作。

1 个答案:

答案 0 :(得分:1)

您还可以使用ElementName:

 <CheckBox HorizontalAlignment="Right" IsChecked="{Binding IsChecked, Mode=TwoWay}" Command="{Binding DataContext.UpdateFilledFieldsCommand, ElementName=BibTexFields}"/>

然而,RelativeSource也应该有效。通过快速搜索,我发现了这一点:How do I use WPF bindings with RelativeSource?虽然我不知道UWP应用程序中是否存在所有功能,但它看起来还不错。