The ListBox control does not implement a Command property. I have to attach some functionality to the SelectionChanged event. Somebody knows how can I do it? Please help me
|
feedback
|
|
I prefer using a binding to the
...
| |||
|
feedback
|
|
Think this post from Laurent Bugnion will help you solve the problem: The post above mentions the DataGrid but I do think it will work with the ListBox too! Best regards and Happy New Year!! :) | |||
|
feedback
|
|
I would suggest using While this will definitely work, there might be an easier way depending on what you are doing. It might just be easier to bind an object to the | |||
|
feedback
|
|
Basically you have a few options:
| |||
|
feedback
|
|
This is the way where You can Reach the Selection changed events in Your MVVM Application First Of all i tell you that Command Property only work in Button now we have to Explicitly binding that property in our Selection Changed event like List box or combo box in Your XMAL file
for this you have to add dll Syatem.Windows.Interactivity now u have to add references in your xaml file namespace like xmlns:Local="clr-namespace:System.Windows.Interactivityassembly=System.Windows.Interactivity" in your ViewModel Class you have to define your Command in Con structure
now create the TestMethod method which can handle the selection changed event
i hope this may help u. | |||
|
feedback
|