Full Screen and visible start menu [modified]
-
-
Hello Im after code that opens an application in "full screen", I want to keep the start menu visible. (Using WPF Window) this.WindowState = WindowState.Maximized; Covers the whole screen.... Cheers Spaz
modified on Monday, January 28, 2008 6:42:16 AM
Hei I´ve got a solution that works, not optimal, but it works this.Left = 0; //place our form at top this.Top = 0; this.WindowState = WindowState.Normal; this.Height = SystemParameters.PrimaryScreenHeight - 30; this.Width = SystemParameters.PrimaryScreenWidth; Spaz
-
Hei I´ve got a solution that works, not optimal, but it works this.Left = 0; //place our form at top this.Top = 0; this.WindowState = WindowState.Normal; this.Height = SystemParameters.PrimaryScreenHeight - 30; this.Width = SystemParameters.PrimaryScreenWidth; Spaz
Hi Spaz, have also problem with this full screen Form. I use VB.Net Express 2005. How to make this form covers all windows screen ? Canyou help me, plz? :)
Best Regards, Ahmad Rifai Yusuf