In c# application I have a splitcontainer in which in right panel i have a form.I want to retrieve the values of the textboxes of the form when I click a button outside the form inside the panel. how to do it?
feedback
|
|
May be you are having a UserControl in the Right panel of the SplitContainer. In you that userControl class write a public method to get values.
Add the userControl the SplitContainer.
From out side of the MyUserControl class you can call GetValueOfTheTextBox method.
| |||
|
feedback
|
|
You need to reference the other form. Let's say you have Form1 and Form2. Form2 has all of the text boxes on it. Form1.cs - Button1_Click():
Form2.cs:1.Make a textBox control and name it 'textBox1'. 2.Create a public property that will return an reference of textBox1.
So, what exactly are we doing here?
| |||||
feedback
|
|
If Form2 is the form / user control inside the panel, create public properties to "get" the value of each textbox, and then refer to those properties in the parent form (Form1). For instance, if Form2 has textboxes for first name and last name, create properties to get their value:
Then in Form1, assuming form2 is the instance of Form2 that you inserted into the panel, you can refer to those properties like this:
| |||
|
feedback
|