Print Page | Close Window

Prism explorer and prism or infrastructure commanding

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce 2009
Forum Discription: For .NET 3.5
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=1561
Printed Date: 06-Apr-2025 at 7:40pm


Topic: Prism explorer and prism or infrastructure commanding
Posted By: Niels Verkaart
Subject: Prism explorer and prism or infrastructure commanding
Date Posted: 18-Nov-2009 at 6:23am
Hello,

I'm recreating a Silverlight test project from the Prism explorer example. In that I need a Prism event/command from TextBox change.

In your example I can see reference to cal:Click.Command from a button, but in a combobox you use another method: infrastructure:SelectionChanged.Command

I wanted to use the Prism way, and expected so because your readme file in the Infrastructure project says that they are no longer used. It rather seems it is used, but I would like to know how it would be possible in the Prism way.

Any help is much appriciated.

Niels Verkaart



Replies:
Posted By: WardBell
Date Posted: 20-Nov-2009 at 4:17pm

Sorry for the delayed response. I didn't see this for some reason.

One of the deficiencies of the Prism commanding approach is that they only wired it for Buttons. However, they do describe how you can extend commanding to other control events.
 
There is an example of that in Prism Explorer. Take a look at Infrastructure.Commanding.SelectionChanged and SelectorSelectionChangedCommandBehavior.
 
Then look at its usage in the module, ModelExplorer.Explorer.ExplorerView.xaml. Around line 278 you will find a binding of a ComboBox.SelectionChanged event to this command.
 
Use that as a model to come up with your own command behavior for binding to the TextBox changed event.


Posted By: WardBell
Date Posted: 20-Nov-2009 at 4:25pm
Hi Niels - I just re-read your post and realize that you found that example. That is the Prism way as I understand it. Please post again here if there is something specific about my example that I can explain better.


Posted By: Niels Verkaart
Date Posted: 23-Nov-2009 at 11:29am
okay thank you Ward,
I was a little off track from the readme, but no problem though. I will first read about these dependency properties to be sure what I'm doing. I want to learn about any performance penalties too, so there is much ahead.
Thanks again.

-------------
Niels Verkaart



Print Page | Close Window