Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
55
Form added in the MdiContainer are empty !
posted

Hello Folks. Please i have the following problem:

I have a form A1 with the property IsMdiContainer=True with an UltraExplorerBar on it. In the UEB i have added some groups and Items.

I have another form called B1 with a buttons,labels,comboboxes on it.

When i click on some item on the UEB (A1 form) i want the form B1 to be shown.

private void ultraExplorerBar1_ItemClick(object sender, Infragistics.Win.UltraWinExplorerBar.ItemEventArgs e)
{
switch (e.Item.Tag.ToString())
{
case "CustomersIncidents":
CustomersIncidents B1 = new CustomersIncidents();
B1.MdiParent = this;
B1.Show();
break;

}

}

The B1 is added to my form A1 but without the buttons and the other controlers !

Should i add something else ?

Thanks for your help :)


Parents Reply Children
No Data