为什么当我在其中单击 ComboBox 时,SelectedItem 在 ListBox 上不起作用,代码下方:
<ListBox SelectedItem="{Binding MySelectedItemDataGrid}>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<ComboBox />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
当我单击 ComboBox 时,我需要在 ListBox 中获取 SelectedItem。
谢谢