0

私は ac# ユーザー コントロールを持っています。このコントロールにボタンがあり、ユーザーがボタンをクリックすると、別のユーザー コントロールが開かれるようにします。

どうやってやるの?

ありがとう

4

2 に答える 2

1

You have to create the control you want to add and add it.

YourCustomControl uc = null;

private void button1_Click(object sender, EventArgs e)
{
     uc = new YourCustomControl();
     this.Controls.Add(uc); // this represent the user control in which you want to add
                            // You can add it in some container like Panel or GroupBox
}
于 2012-11-01T09:06:37.863 に答える
0

Take a look at RaiseBubbleEvent. This pushes an event up to its parent.

http://msdn.microsoft.com/en-us/library/aa719644(v=vs.71).aspx

于 2012-11-01T09:06:42.683 に答える