windows taskbar
.NET (Core and Framework)
2
Posts
2
Posters
0
Views
1
Watching
-
hi i am working on a full screen app, and was wondering if there is any way of hiding the taskbar.
-
hi i am working on a full screen app, and was wondering if there is any way of hiding the taskbar.
Yes, in the form that you want to fill the screen, handle the
Load
event inserting the following code:this.FormBorderStyle = FormBorderStyle.None; // Removes the titlebar and form border. this.Location = new Point(0, 0); this.Size = new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
You may want to set the form's
TopMost
property totrue
as well. Hope that helps. :) Happy Programming and may God bless! "Your coding practices might be buggy, but your code is always right." Internet::WWW::CodeProject::bneacetp N-Tech Productions http://www.n-tp.com/