私は ac# ユーザー コントロールを持っています。このコントロールにボタンがあり、ユーザーがボタンをクリックすると、別のユーザー コントロールが開かれるようにします。
どうやってやるの?
ありがとう
私は ac# ユーザー コントロールを持っています。このコントロールにボタンがあり、ユーザーがボタンをクリックすると、別のユーザー コントロールが開かれるようにします。
どうやってやるの?
ありがとう
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
}
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