你要怎么样调用?
假设现在界面上有一个TextBox,名字为textbox1
你有一个类:
class Student
{
public string Name { get; set; }
public void ShowName(TextBox textbox)//把控件当作参数传进去
{
textbox.Text=this.Name;
}
}
然后在代码里写:
Student student=new Student();
student.Name="t04wxs";
student.ShowName(textbox1);//这样就可以了