嗨,我是很新的C#,你可能會想,我得到以下錯誤:我如何關閉表單並打開另一個表單?
Error 1 'customer_details_form' is a 'namespace' but is used like a 'type'
我想關閉窗體如果返回值並打開另一種形式。但我正在努力應付什麼,即什麼是所謂的形式?這是我應該使用的名稱空間還是其他名稱。
public void button1_Click(object sender, EventArgs e)
{
string fileName = string.Format(tblastname.Text);
if (File.Exists(fileName))
{
MessageBox.Show("this customer already exsists");
}
else
{
MessageBox.Show("No file found, please create new customer");
home_form f2 = new home_form();
this.Hide();
f2.ShowDialog();
//if false bring up new customer form.
customer_details_form f4 = new customer_details_form();
this.Hide();
f4.ShowDialog();
}
}
錯誤完全限定的類型名稱是相當自我解釋。 –
命名空間:http://msdn.microsoft.com/en-us/library/z2kcy19k(v=vs.80).aspx – Rotem