Answer the question
In order to leave comments, you need to log in
Why don't the form and the image on it take up the entire screen?
The form has a size of 1920x1080 (actually, like the current resolution of my screen where I'm testing).
You need to open a form with an image (PictureBox) full screen on top of all windows and so that there are no icons (Close, minimize, maximize) - as in a full-screen game,
PictureBox made the size 1920x1080 and placed it at coordinates 0; 0
As a result, an empty piece still remains forms on the right, although the picture with a resolution of 1920x1080
I open the form in full screen due to these parameters:
this.WindowState = FormWindowState.Maximized;
this.TopMost = true; //Поверх всех окон
this.FormBorderStyle = FormBorderStyle.None; //Убираем интерфейс
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question