本文介绍了使用C#Windows应用程序将一种表单控制用于另一种表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一个Windows应用程序,它使用两种形式,例如form1和form2.

第一种形式只设计了两个文本框.另一种形式设计了一个按钮.

现在第二个表单如何访问文本框的第一个表单控件.


即button_click()

one windows application using 2 forms like form1 and form2.

first form designed two textbox only. another one form designed one button.

now the second form how to access first form controls of textbox.


that is, button_click()

{
string a=textbox1.text;
string b=textbox2.text;
console.writeline(a);
console.writeline(b);
}

推荐答案

form1 obj=new form1();


现在


now

str=obj.textbox1.text;


这样,我们可以尝试使用


like this we can use just try



Form1 f1=new Form1();
string s1=f1.TextBox1.Text;



如果您不想公开控件,请使用属性.


or
use properties if you do''nt want to make control public.


这篇关于使用C#Windows应用程序将一种表单控制用于另一种表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-06 02:15