leocb / MaterialSkin

Theming .NET WinForms, C# or VB.Net, to Google's Material Design Principles.
MIT License
446 stars 132 forks source link

Control Dock = top or fill problem #182

Closed xxtkidxx closed 3 years ago

xxtkidxx commented 3 years ago

Hi team. How to use Control Dock properties equal TOP or FILL do not cover top Header of Form? Thanks for support. image

orapps44 commented 3 years ago

Hi,

You can try to set main form top padding to 80.

Instead of control dock property = fill, i'm using Anchor =Top, Bottom, Left, Right with Location.Y property set to 80.

xxtkidxx commented 3 years ago

Hi,

You can try to set main form top padding to 80.

Instead of control dock property = fill, i'm using Anchor =Top, Bottom, Left, Right with Location.Y property set to 80.

That's a good idea, Thanks.