我有CheckBox,它是一些DataGrid的。 Combobox的itemtemplate是:
<ComboBox Name="cbxM" SelectedItem="{Binding Path=SelectedItem}" ItemsSource="{Binding SomeList}">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding SomeValue}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
我想要实现的目标是:
当用户点击两次此ComboBox时,列表将关闭,他可以从SelectedItem中选择文本。
我该怎么做?