I need to open a ComboBox when the user perform a tap on a button, any idea? I have searched a lot but I haven't find useful stuff.
Asked
Active
Viewed 94 times
1 Answers
0
Try this,
private void Button_Click(object sender, RoutedEventArgs e)
{
Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => comboBox1.IsDropDownOpen = true);
}

Sajeetharan
- 216,225
- 63
- 350
- 396
-
i don't have enough reputation sorry – frenk91 Mar 22 '15 at 13:14