私のコード:parent_Formでどのように子供のwinformによって親winformのstatustipを処理するのですか?
:子フォームで
public parent_Form()
{
InitializeComponent();
}
private void button_Click(object sender, EventArgs e)
{
child ch = new child();
ch.MdiParent = this;
ch.Show();
}
public string label
{
set
{
textBox1.Text = value;
}
}
:
public child()
{
InitializeComponent();
}
private void write_button_Click(object sender, EventArgs e)
{
parent_Form paren = new parent_Form();
paren.label = "i am vietnamese";
}
しかし "私はベトナムだ"(TextBox1テキストボックスに表示されません。親winform上にある)
ありがとうございました。とても役に立ちます – rocket42