How to use multiple forms and UserControls in c# windows application?

Please support our C# advertiser: Intel Parallel Studio Home
Reply

Join Date: Nov 2007
Posts: 5
Reputation: chiragwebmyne is an unknown quantity at this point 
Solved Threads: 0
chiragwebmyne chiragwebmyne is offline Offline
Newbie Poster

How to use multiple forms and UserControls in c# windows application?

 
0
  #1
Jul 11th, 2008
How to use multiple forms and UserControls in c# windows application?

Where i have one toolStrip in UserControl1 (say UserControl1.cs) and onClick of ToolStripButton1
i need to open on Form1 (say Form1.cs) and Form1.cs contain only One RichTextbox control.
now i need to fetch Form1.cs richtextbox control value (text) onClick of another button of toolstripbutton2 (in Usercontrol1.cs).

Please suggest me to do this

Thanks
Chirag
Reply With Quote Quick reply to this message  
Join Date: Jul 2008
Posts: 89
Reputation: camilojvarona is an unknown quantity at this point 
Solved Threads: 10
camilojvarona camilojvarona is offline Offline
Junior Poster in Training

Re: How to use multiple forms and UserControls in c# windows application?

 
0
  #2
Jul 11th, 2008
This is how to add a new control.
  1. public class Form1
  2. {
  3. private UserControl1 userControl;
  4. public Form1()
  5. {
  6. InitializeComponent();
  7.  
  8. userControl = new UserControl1();
  9. this.Controls.Add(userControl);
  10. }
  11. }

Mi idea is.

1.On the UserControl1.cs create a 2 propertys one for 'toolStrimpButton1' and another for 'toolStripButton2'.

2.On the Form2.cs create a property for the RitchTextBox.

3.
On Form1.cs create a new instance of UserControl1 and add it to the form(as showed above).

Subscribe to the click event of each UserContro1's buttons(e.i ToolStripButton1.Click += new EventHnadler(ShowForm2)) and implement the handler

If you want information about 'event' see these links(both links belong to one article but these are the topics you nedd for solving your problem).
http://www.codeproject.com/KB/cs/eve...registration20

http://www.codeproject.com/KB/cs/eve...ndlingMethod23

Thanks,
Camilo
Last edited by camilojvarona; Jul 11th, 2008 at 7:23 am.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the C# Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC