BlueMystical / Dark-Mode-Forms

Apply Dark Mode to all Controls in a Form [WinForms]
GNU General Public License v3.0
110 stars 15 forks source link

toolBar.GripStyle #18

Closed kachnitata closed 5 months ago

kachnitata commented 5 months ago

hi @BlueMystical , I would like to ask you what was the motivation for the following lines in the code:

            if (control is ToolStrip toolBar)
            {
                toolBar.GripStyle = ToolStripGripStyle.Hidden;

this makes all the ToolStrips locked in their positions, but I don't see any advantage of it. After commenting this line out, everything seems to work correctly and visually looks OK as well. I think a theming component should not affect the behavior unless really necessary.

BlueMystical commented 5 months ago

i... dont remember the why xD, if you test it with that line commented and all works feel free to Commit and Pull. Thanks.