我試圖將LabelStatus的文本設置爲類中的消息,但它不起作用。 這裏是我的代碼:無法設置另一個類的值
類:
public bool openConnection()
{
SetStatus("Connecting to " + Server);
//Mysql code
}
private void SetStatus(string msg)
{
Form1 form = new Form1();
form.SetStatus(msg);
}
Form1中:
public void SetStatus(string status)
{
labelStatus.Text = _status;
}
我是相當新的C#(PHP的傢伙),爲我的生活不能弄清楚什麼我做錯了
在'公共無效SetStatus(字符串狀態)'是'staus',但在它的身上你使用_status ...用下劃線......是一個錯字? – horgh
問題在哪裏? –
你也需要調用你的表格中的Show或ShowDialog方法 –