Reputation: 17701
I am working on a .NET C# application that has a main Form which is MDI container. When the user resizes the main form, scroll bars appear and the imagebuttons are covered by the scroll bars of the mainform...
When the form first loads the buttons are shown correctly.
Resizing the form(main form), the image buttons in child form become invisible (they are covered by main from scroll bars)
Would any one pls help on this for displaying images in child form ..
Many thanks
Upvotes: 1
Views: 280
Reputation: 81675
Try merging the "image" buttons to the MDI Parent's ToolStrip
. You have to make the ToolStrip
control on the child form invisible and set the MergeAction
and MergeIndex
properties in order to get it to work. See ToolStripManager.Merge Method.
If you want them to stay on the child form, the scrollbars are going to come into play. It's sort of the deal with MDI forms.
Upvotes: 1