Maximize glitches
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I'm working on a app which workspace is contained in one splitcontainer that for its turn is also inside a splitcontainer. That workspace is a form and i told it to always maximize. If i want to make always maximized i told the splitcontainers to do the following operations when moved: if (workspace != null) { workspace.WindowState = FormWindowState.Normal; workspace.WindowState = FormWindowState.Maximized; } The thing is that i cant see a imediate adapation of the form. I can perfectly note is getting smallerand then getting bigger, occupiyng the full area. Is there a way of making this adaptation more smooth? Thx, Best regards, Nuno