full screen mode

Hi
Tell me how to configure the program so that it always opens in full screen mode?

Well you can’t yet. Full screen in windows is a bit tricky. A few people have asked for it, I’ll try.

When you create a shortcut to a Windows program, you can set the properties to always start maximized.

Maximized no problem, but this is a maximized fullscreen where there is no frame. And that’s the strange part of how it reacts with windows. I’ll try it tonight and see if i can figure it out.

Tada:

    if (Properties.Settings.Default.setDisplay_isStartFullScreen)
    {
        startFullScreenToolStripMenuItem.Checked = true;
        this.WindowState = FormWindowState.Normal;
        this.FormBorderStyle = FormBorderStyle.None;
        this.WindowState = FormWindowState.Maximized;
        btnFullScreen.BackgroundImage = Properties.Resources.WindowNormal;
        isFullScreen = true;
    }
    else
    {
        startFullScreenToolStripMenuItem.Checked = false;
        isFullScreen = false;
    }
3 Likes

Thanks for the answer, but tell me where to insert the code?

In about 50 different places. Are you trying out version 4? Or using v3?

version 4

can you send me the finished file
I will replace my own and compile the program

v4 branch has it all. Added section switches from Matthias as well.

I’m sorry ,
reviewed all topics, but never found any mention of the full screen