0
私はListBox
とUserControlがListBoxItem
の中にあります。 ユーザーコントロールをクリックしたときにListBox.SelectionChanged
が発砲しませんでした(私は解雇したい)。ListBoxItem内のuserControlをクリックしたときのListBox.SelectionChanged
XAML:
<ListBox x:Name="List" HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Foreground="Transparent"
BorderBrush="Transparent"
Background="Transparent"
SelectionMode="Multiple" Grid.Row="2"
SelectionChanged="List_SelectionChanged" >
<ListBox.ItemTemplate>
<DataTemplate>
<my:Message HorizontalAlignment="Left" .../>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
感謝。