8

我有我的应用程序,想让它在全屏模式下运行,没有任务栏。我发现了如何隐藏窗口栏,但是当我启动我的应用程序时,它并没有覆盖窗口任务栏的空间,尽管最后一个是隐藏的。

我找到了这个,但它没有用。我找不到关于畏缩的例子。我有FormBorderStyle = None,并且WindowsState = Maximized

解决方案:

我找到了一种方法。一个重要的提示是让WindowState = Normal(我花了一些时间才发现这个问题)。如果你有WindowState = Maximized,则无法将窗体的高度设置为最大显示高度。

我写了这段代码来探测它,它工作正常。是一个有两个按钮的表单:button1(全屏)和 button2(恢复默认屏幕)

    public partial class Form1 : Form
    {
        public Form1(){
               InitializeComponent();            
        }

    [DllImport("Coredll")]
    internal static extern IntPtr FindWindow(String lpClassName, String lpWindowName);

    [DllImport("coredll.dll")]
    internal static extern bool EnableWindow(IntPtr hwnd, Boolean bEnable);

    [DllImport("coredll.dll")]
    private static extern bool MoveWindow(IntPtr hWnd, int x, int y, int cx, int cy, bool repaint);


    public static bool EnableTaskBar(Boolean enable)
    {
        IntPtr hwnd;
        hwnd = FindWindow("HHTaskBar", "");

        if (enable) SetHHTaskBar();
        else HideHHTaskBar();

        return EnableWindow(hwnd, enable);
    }

    public static void HideHHTaskBar()
    {
        IntPtr iptrTB = FindWindow("HHTaskBar", null);
        MoveWindow(iptrTB, 0, Screen.PrimaryScreen.Bounds.Height,
        Screen.PrimaryScreen.Bounds.Width, 26, true);
    }

    public static void SetHHTaskBar()
    {
        IntPtr iptrTB = FindWindow("HHTaskBar", null);
        MoveWindow(iptrTB, 0, 294,
        Screen.PrimaryScreen.Bounds.Width, 26, true);
    }


    private void button1_Click(object sender, EventArgs e)
    {
        EnableTaskBar(false);
        this.Width = Screen.PrimaryScreen.Bounds.Width;
        this.Height = Screen.PrimaryScreen.Bounds.Height;
        this.Left = 0;
        this.Top = 0;
    }

    private void button2_Click(object sender, EventArgs e)
    {
        EnableTaskBar(true);
    }
}

希望它可以帮助其他有同样问题的人!

谢谢您的帮助!

4

2 回答 2

8

隐藏任务栏后,明确设置表单的大小和位置:

myForm.Width = Screen.PrimaryScreen.Bounds.Width;
myForm.Height = Screen.PrimaryScreen.Bounds.Height;
myForm.Left = 0;
myForm.Top = 0;
于 2012-05-28T19:15:30.060 回答
0

我总是在需要时使用SHFullScreen来实现这一点。您将需要使用PInvoke来调用它。

于 2012-05-28T19:49:07.247 回答