Skip to main content
Home Forums Silverlight Programming Silverlight Controls and Silverlight Toolkit MouseLeftButtonDown of ComboBox control is not firing...
2 replies. Latest Post by Amanda Wang - MSFT on December 2, 2008.
(0)
mr.saif
Member
417 points
147 Posts
11-28-2008 7:06 AM |
MouseLeftButtonDown of ComboBox control is not firing. Does any one know Y? I know that for some controls we have to override mouseleftbuttondown event to fire these events to control. i have did so by adding my own dropdown class and overriding its mouseleftbuttondown event. It still does not get fired even in my class.
any idea?
HarshBar...
Star
9908 points
1,719 Posts
11-28-2008 7:34 AM |
Hi,
Provide your sample code so that we will be able to check .....
Amanda W...
All-Star
17241 points
1,466 Posts
12-02-2008 1:51 AM |
Hi mr.saif,
mr.saif:MouseLeftButtonDown of ComboBox control is not firing. Does any one know Y?
Maybe, it is by design.
What do you mean adding your own dropdown class?
If you set the data to ComboBox's ItemsSource property, the ComboBox's DropDown will show your data.
And you can define a DataTemplate in your XAML to implement the complex dropdown combo box items.
Or if you want to run into some needs to format the data in the XAML.,you can try to converters inherits IValueConverter interface which gives you Convert and ConvertBack functions you have to implement.