我目前使用嵌套在listview中的listview作为以图形方式显示Knockout样式锦标赛的方式,由ViewTreeOne在ViewModel中备份,其中包含对象列表“TournamentNode”。但是,当我点击它时,我无法将我选择的“锦标赛节点”绑定。
<Grid Grid.Row="2">
<ListView ItemsSource="{Binding SectionTreeOne}">
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListView.ItemsPanel>
<ListView.ItemTemplate >
<DataTemplate>
<ListView ItemsSource="{Binding}" SelectionMode="Single"
SelectedItem="{Binding SelectedTournamentNode}">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
C#绑定:
收藏
public List<List<TournamentNodeModel>> SectionTreeOne
{
get { return _sectionTreeOne; }
set
{
_sectionTreeOne = value;
base.OnPropertyChanged("SectionTreeOne");
}
}
选择项目:
public TournamentNodeModel SelectedTournamentNode
{
get { return _selectedTournamentNode; }
set
{
if (value == _selectedTournamentNode)
return;
_selectedTournamentNode = value;
base.OnPropertyChanged("SelectedTournamentNode");
}
}
答案 0 :(得分:3)
尝试使用以下绑定:
SelectedItem="{Binding SelectedTournamentNode, Mode=TwoWay}"
请记住,WinRT始终使用OneWay
绑定模式作为默认值,而不像WPF中那样根据属性性质或可访问性自动选择绑定模式。
我与WinRT一起使用以避免这种错误的一个好原则是始终明确指定绑定模式。
所以我终于弄明白你绑定中的错误是什么。首先,如上所述,SelectedItem
绑定模式必须明确地设置为TwoWay
。
其次,嵌套列表绑定到SectionTreeOne
列表中的内部列表,因此如果要将SelectedItem
绑定到视图模型上的属性,则必须将此属性重新绑定到使用命名元素的父列表的DataContext
。您实际上是尝试绑定到内部列表上的不存在的属性,而不是绑定到属性所在的视图模型。
<ListView x:Name="listView" ItemsSource="{Binding SectionTreeOne}">
...
<ListView.ItemTemplate >
<DataTemplate>
<ListView ItemsSource="{Binding}" SelectionMode="Single"
SelectedItem="{Binding Path=DataContext.SelectedTournamentNode, ElementName=listView, Mode=TwoWay}">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
请阅读Visual Studio调试器输出,它有关于绑定链中可能发生的绑定错误的非常有用的信息,特别是如果您绑定嵌套在另一个列表中的列表,它将为您节省很多麻烦!