Hi, I have a menuStrip1 that is has setting DOCK =TOP.
The Form has MainMenuStrip set to this menuStrip1.
When the form is resized (read smaller) the menu disappears together with the top content of the form.
I have tried this setting with no result, it still disapers:
menuStrip1.AutoSize = true;
menuStrip1.RenderMode = ToolStripRenderMode.Professional;
menuStrip1.GripStyle = ToolStripGripStyle.Visible;
menuStrip1.CanOverflow = true;
What have I done wrong?
The Form has MainMenuStrip set to this menuStrip1.
When the form is resized (read smaller) the menu disappears together with the top content of the form.
I have tried this setting with no result, it still disapers:
menuStrip1.AutoSize = true;
menuStrip1.RenderMode = ToolStripRenderMode.Professional;
menuStrip1.GripStyle = ToolStripGripStyle.Visible;
menuStrip1.CanOverflow = true;
What have I done wrong?