I want to make the screen fill with my application just like kiosk mode. How can I do it using c#?
i need this for desktop application
I want to make the screen fill with my application just like kiosk mode. How can I do it using c#?
i need this for desktop application
get the screen width and height,
it will give the working area dimensions in a rectangle the add size of task bar sample code is here:
Rectangle RectangleScreen = new Rectangle();
RectangleScreen = Screen.PrimaryScreen.WorkingArea;
Size FormSize = new Size(RectangleScreen.Width, RectangleScreen.Height + 35);
this.Size = FormSize;