Click here to Skip to main content
15,914,014 members
Home / Discussions / WPF
   

WPF

 
QuestionMessage Removed Pin
22-Jul-09 4:06
professionalN_tro_P22-Jul-09 4:06 
AnswerRe: Binding Questioon Pin
Pete O'Hanlon22-Jul-09 4:34
mvePete O'Hanlon22-Jul-09 4:34 
Questionhow to get the scroll vertical and scroll horizantal for a page created in WPF Pin
Krishna Aditya22-Jul-09 4:04
Krishna Aditya22-Jul-09 4:04 
AnswerRe: how to get the scroll vertical and scroll horizantal for a page created in WPF Pin
#realJSOP22-Jul-09 4:24
professional#realJSOP22-Jul-09 4:24 
GeneralRe: how to get the scroll vertical and scroll horizantal for a page created in WPF Pin
Krishna Aditya22-Jul-09 4:29
Krishna Aditya22-Jul-09 4:29 
AnswerRe: how to get the scroll vertical and scroll horizantal for a page created in WPF Pin
Krishna Aditya22-Jul-09 4:24
Krishna Aditya22-Jul-09 4:24 
QuestionActive Directory in Silverlight Pin
GomathiR22-Jul-09 1:55
GomathiR22-Jul-09 1:55 
AnswerRe: Active Directory in Silverlight Pin
Mark Salsbery22-Jul-09 6:31
Mark Salsbery22-Jul-09 6:31 
AnswerRe: Active Directory in Silverlight Pin
Michael Sync23-Jul-09 6:15
Michael Sync23-Jul-09 6:15 
AnswerRe: Active Directory in Silverlight Pin
Jeremy Likness26-Jul-09 3:04
professionalJeremy Likness26-Jul-09 3:04 
GeneralActive Directory in Silverlight Pin
Vadluri Sreenu6-Sep-10 18:51
Vadluri Sreenu6-Sep-10 18:51 
AnswerRe: Active Directory in Silverlight Pin
Member 46389115-Dec-10 21:43
Member 46389115-Dec-10 21:43 
QuestionHow to measure cold startup time Pin
krishnan.s22-Jul-09 1:02
krishnan.s22-Jul-09 1:02 
AnswerRe: How to measure cold startup time Pin
Pete O'Hanlon22-Jul-09 1:15
mvePete O'Hanlon22-Jul-09 1:15 
GeneralRe: How to measure cold startup time Pin
krishnan.s22-Jul-09 1:24
krishnan.s22-Jul-09 1:24 
GeneralRe: How to measure cold startup time Pin
Pete O'Hanlon22-Jul-09 1:40
mvePete O'Hanlon22-Jul-09 1:40 
AnswerRe: How to measure cold startup time Pin
#realJSOP22-Jul-09 2:42
professional#realJSOP22-Jul-09 2:42 
QuestionCreating a list... Php and Silverlight just point me in the right direction please? Pin
Joe881021-Jul-09 11:26
Joe881021-Jul-09 11:26 
AnswerRe: Creating a list... Php and Silverlight just point me in the right direction please? Pin
Michael Sync23-Jul-09 6:18
Michael Sync23-Jul-09 6:18 
QuestionI just heard that HTML5, which can realize most functions of Silverlight, true? Pin
Seraph_summer21-Jul-09 9:24
Seraph_summer21-Jul-09 9:24 
QuestionDataBinding composite controls Pin
Adriaan Davel21-Jul-09 6:57
Adriaan Davel21-Jul-09 6:57 
AnswerRe: DataBinding composite controls Pin
Michael Sync23-Jul-09 6:36
Michael Sync23-Jul-09 6:36 
GeneralRe: DataBinding composite controls Pin
Adriaan Davel23-Jul-09 19:27
Adriaan Davel23-Jul-09 19:27 
GeneralRe: DataBinding composite controls Pin
Michael Sync23-Jul-09 20:05
Michael Sync23-Jul-09 20:05 
You can probably use Event Aggregator Pattern or Mediator patten to achieve this. In our project, we are using the Event Aggregator implementation from Prims Framework to deal with this kinda scenero. We used to have MainCRUD.xaml, Listing.xaml and Details.xaml. Listing.xaml and Details.xmal will be shown in MainCRUD.xaml.

There are a few ways to handle it.

Approach #1. MainCRUD will listen the SendPropertyChanged from Listing. If the user select a row, the SelectedEntity property that is binded to the selected item of Datagrid will be triggered the SendPropertyChanged and MainCRUD will get that notification.

Approach #2. use Event Aggregator Pattern or Mediator patten

Hope it helps. Smile | :)

Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

Microsoft MVP (Silverlight), WPF/Silverlight Insiders

GeneralRe: DataBinding composite controls Pin
Adriaan Davel23-Jul-09 21:21
Adriaan Davel23-Jul-09 21:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.