111,119
社区成员
发帖
与我相关
我的任务
分享
namespace 用户系统
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}
namespace other
{
class function1
{
private void UpdateLab (string str)
{
//这里想更改 namepace 用户系统 form1 里一个 Label1.text
}
}
}
namespace other
{
class function1
{
private void UpdateLab (string str)
{
//这里想更改 namepace 用户系统 form1 里一个 Label1.text
用户系统.Form1 frm1 = new 用户系统.Form1();
frm1.Label1.Text = str;
}
}
}