我在另一个列表框的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>`
&#34; Courriers&#34;是以下类的对象:
public class MyClass
{
public DateTime Date { get; set; }
public List<LetterInfos> CourriersListe { get; set; }
}
LetterInfos有日期,姓名和标题。
Selection是一个LetterInfos对象,当我在列表中点击它时,我希望得到它。
我正在使用mvvm light,所以在我的ViewModel构造函数中我有这个:
SelectionCommand = new RelayCommand<LetterInfos>(OnSelectionElement);
我试图移动外部列表框中的交互性段落,但我只能选择MyClass项目,我想选择一个LetterInfos项目.. 有人可以帮帮我吗?谢谢!!
答案 0 :(得分:0)
经过多次研究,我认为在这种情况下不可能获得selectedItem。
但我找到了解决这个问题的好方法:LongListSelector
。
即使其selectedItem不可绑定,也有一个要添加的类可以使其可绑定(对于命令的参数):Trouble binding LongListSelector.SelectedItem to MVVM property