My application have parent form with MenuStrip, ToolStrip and isMdiContainer=true.
My Menu strip was merged with child form menu strip items.
When i open child form contol box items from child form was showed.
Child icon was showed in parent Menu Strip and controls was showed.
I hide all but again was showing on start.
I set ControlBox, MinimizeBox, MaximizeBox, ShowIcon to false and FormBorderStyle to none.
private void partneriToolStripMenuItem_Click(object sender, EventArgs e)
{
ChildForm newMDIChild = new ChildForm();
newMDIChild.Show();
newMDIChild.MdiParent = this;
newMDIChild.tsChilds.Visible = false;
newMDIChild.WindowState = FormWindowState.Maximized;
newMDIChild.FormBorderStyle = FormBorderStyle.None;
newMDIChild.ControlBox = false;
newMDIChild.MinimizeBox = false;
newMDIChild.MaximizeBox = false;
newMDIChild.ShowIcon = false;
}
I dont expect from anyone to finish my job i just want solution.
