0

When not all items fit in a ToolStrip, there are arrows on the right side. Is there the same possibility for MenuStrip?

'LayoutStyle = Flow' is not so good, cause then the menu takes more lines and the user has less space to work.

Arrows

Eugen Hübner
  • 211
  • 3
  • 12
  • 2
    [`CanOverflow`](https://msdn.microsoft.com/en-us/library/system.windows.forms.menustrip.canoverflow(v=vs.110).aspx)? Note the remarks about also setting a property on items within it. – James Thorpe Nov 14 '17 at 13:40

1 Answers1

0

Thanks for your comment, I found the answer:

Can a MenuStrip control have its LayoutStyle set to StackWithOverflow?

    Me.MenuStrip1.CanOverflow = True
    Me.FischersToolStripMenuItem.Overflow = ToolStripItemOverflow.AsNeeded
Eugen Hübner
  • 211
  • 3
  • 12