How can I combine MinimumSize with AutoScrollMinSize in c# .net dockable forms?
I want my dockable Winforms to have a minimum size when floating. They also show scrollbars if they are minimized to less than a set AutoScrollMinSize property. If I add a MinimumSize property to get a desired behaviour the scrollbars stop working.
How can I both use the AutoScrollMinSize and the MinimumSize开发者_如何学Python properties on my forms? Thanks!
Set AutoScrollMinSize to some value smaller than MinimumSize so the form will still display scroll bars even if the form is at its minimum size.
精彩评论