如何获取列表框中列表框的选定项
本文关键字:列表 何获取 获取 | 更新日期: 2023-09-27 18:35:38
我在另一个列表框的dataTemplate中有一个列表框。我可以获取外部列表框的选定项,但我一直在尝试获取内部列表框的选定项(名称:"ListBoxLetter"),没办法..
这是我的 xaml:
<ListBox x:Name="ListBoxOut" ItemsSource="{Binding Letters}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<StackPanel Width="500" Height="60" Background="#16C8DB">
<TextBlock Text="{Binding Date}" />
</StackPanel>
<ListBox x:Name="ListBoxLetter" ItemsSource="{Binding CourriersListe}" SelectedItem="{Binding Selection, Mode=TwoWay}" >
<Interactivity:Interaction.Triggers>
<Interactivity:EventTrigger EventName="SelectionChanged" >
<Command:EventToCommand Command="{Binding SelectionCommand}" CommandParameter="{Binding Selection}" />
</Interactivity:EventTrigger>
</Interactivity:Interaction.Triggers>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Date}" />
<TextBlock Text="{Binding Name}"/>
</StackPanel>
<TextBlock Text="{Binding Title}" />
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>`
"Courriers"是以下类的对象:
public class MyClass
{
public DateTime Date { get; set; }
public List<LetterInfos> CourriersListe { get; set; }
}
字母信息有日期、名称和标题。
选择是一个 LetterInfos 对象,我想在列表中单击它时获取它。
我正在使用 mvvm light,所以在我的 ViewModel 构造函数中我有这个:
SelectionCommand = new RelayCommand<LetterInfos>(OnSelectionElement);
我尝试在外部列表框中移动交互段落,但我只能获取MyClass选定的项目,并且我想选择一个LetterInfos项目。有人可以帮助我吗?谢谢!!
经过多次研究,我认为在这种情况下不可能获得选择项目。但我找到了解决这个问题的好方法:LongListSelector
。
即使它的 selectedItem 不可绑定,也可以添加一个类,使其可绑定(到命令的参数): 将 LongListSelector.SelectedItem 绑定到 MVVM 属性时遇到问题