0
形式1是主要形式,而在表格2,存在形式使用的輸入1.「沒有給定的參數對應於所要求的形式參數」上的構造
表1:
public partial class Form1 : Form
{
public Form1(string size)
{
InitializeComponent();
lblsize.Text = size;
}
}
表2:
public void btnok_Click(object sender, EventArgs e)
{
//string ukuran = txtsize.Text;
Form1 frm1 = new Form1(txtsize.Text);
this.Hide();
}
然後我得到這個錯誤:
"There is no argument given that corresponds to the required formal parameter 'size' of 'Form1.Form1(string)'
儘管@CodingYoshi給了你答案,你應該已經發布了**錯誤發生的地方。否則,我們將如何知道需要修復的位置? –