Windows Taskbar Over Youtube Fullscreen
And when I want to turn normal mode first taskbar comes and after seconds video becomes windowed. I added a video to explain this problem better -Fullscreen Problem It seems like first it makes chrome fullscreen then the video. And video does not stop. Just I have to wait for fullscreen. I have updated Windows and Drivers. This is a common issue in many Windows 10 computers, the taskbar will simply not hide when in fullscreen mode. The taskbar was initially introduced in Windows 95 and it has been in all the Windows versions ever since.
I have recently written an application for my daughter, which is a kid-free zone where she has all unnecessary key presses ignored (windows key, Esc etc) but the problem I am having is that when I use the following code:
Hide Taskbar When Fullscreen Youtube
I am able to HIDE the taskbar, but it is not truly overlayed. When I move the mouse to where the taskbar would be, and click, it pops up, also, using this code and running external applications withing my windows form, I am left with this windows form keeping itself on top.
If anyone could help me with a proper way to display my windows form as a true fullscreen application, and be able to run external applications from within the form and have them prioritize themselves on top, that would be greatly appreciated.

In case you missed it, I am using VS2010, C# and winforms.
Windows Taskbar Over Youtube Fullscreen On Computer

Thanks in advance! Jagged alliance 2 download mac.
2 Answers
The proper way to make a full-screen app is to just put something like Bounds = Screen.PrimaryScreen.Bounds;
in your main form. Then when your app has focus it will cover the task bar.
You also probably want FormBorderStyle = FormBorderStyle.None;
The order of the performed actions is incorrect.You should first hide the border (FormBorderStyle=None), and then set the window state to maximized. You even don't have to set TopMost to true.