electricalbah
electricalbah

Reputation: 2297

Completely Maximize C# winform and hiding open window icons at bottom

I already set this.WindowState = FormWindowState.Maximized; and everything looks ok but the Windows open-window icons (such as my browser at the bottom of the page) is still visible.

How to make it invisible?

Upvotes: 4

Views: 1667

Answers (1)

electricalbah
electricalbah

Reputation: 2297

I just figured out the answer TopMost must be set to true together with FormBorderStyle = FormBorderStyle.None and Bounds = Screen.PrimaryScreen.Bounds.

Upvotes: 3

Related Questions