How to establish link between Textbox and Button using MVP architecture and C#
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All, I am creating windows app, with MVP architecture.I added a textbox and button to the window.xaml, so that my intention is to browse a folder on button click and display the path in the textbox. If I select MyDocuments in browse click, then the entire path (C:\\Documentsandsettings\....\MyDocuments) should be displayed in the textbox. I am new to MVP and as of now 1 . window.xaml with textbox and button 2. presenter class (windowpresenter.cs) 3. Interface class (Iwindow.cs) are created . But, I am unaware of how to link these controls and how to use publish and subscribe these controls. Please kindly help me in doing this. Thank You, Ramm