搜索

c#怎么隐藏任务栏

发布网友 发布时间:2022-04-24 13:34

我来回答

2个回答

热心网友 时间:2023-10-14 15:37

效果:点击button1程序完全全屏(包括任务栏的位置),点击button2程序还原。
打开vs2005或2008,新建一个窗口form1,在窗口上加入两个按钮button1和button2。然后打开form1.cs,将下列代码复制进去。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
private const int SW_HIDE = 0;
private const int SW_SHOW = 1;
[DllImport("user32.dll")]
private static extern int FindWindow(string className, string windowText);
[DllImport("user32.dll")]
private static extern int ShowWindow(int hwnd, int command);
private FormWindowState winState;
private FormBorderStyle brdStyle;
private bool topMost;
private Rectangle bounds;

private bool IsMaximized = false;

public void Maximize()
{
if (!IsMaximized)
{
IsMaximized = true;
this.Save();
this.WindowState = FormWindowState.Maximized;
this.FormBorderStyle = FormBorderStyle.None;
this.TopMost = true;
WinApi.SetWinFullScreen(this.Handle);
}
}

public void Save()
{
winState = this.WindowState;
brdStyle = this.FormBorderStyle;
topMost = this.TopMost;
bounds = this.Bounds;
}

public void Restore()
{
this.WindowState = winState;
this.FormBorderStyle = brdStyle;
this.TopMost = topMost;
this.Bounds = bounds;
IsMaximized = false;
}
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
int hWnd = FindWindow("Shell_TrayWnd", "");
ShowWindow(hWnd, SW_SHOW);
this.Maximize();
}

private void button2_Click(object sender, EventArgs e)
{
this.Restore();
}
}

public class WinApi
{
[DllImport("user32.dll", EntryPoint = "GetSystemMetrics")]
public static extern int GetSystemMetrics(int which);

[DllImport("user32.dll")]
public static extern void
SetWindowPos(IntPtr hwnd, IntPtr hwndInsertAfter,
int X, int Y, int width, int height, uint flags);

private const int SM_CXSCREEN = 0;
private const int SM_CYSCREEN = 1;
private static IntPtr HWND_TOP = IntPtr.Zero;
private const int SWP_SHOWWINDOW = ; // 0×0040

public static int ScreenX
{
get { return GetSystemMetrics(SM_CXSCREEN);}
}

public static int ScreenY
{
get { return GetSystemMetrics(SM_CYSCREEN);}
}

public static void SetWinFullScreen(IntPtr hwnd)
{
SetWindowPos(hwnd, HWND_TOP, 0, 0, ScreenX, ScreenY, SWP_SHOWWINDOW);
}
}

}
以上代码vs2008c#通过。

热心网友 时间:2023-10-14 15:37

简单的,去下面看吧,刚给你写的

http://www.zu14.cn/2009/03/13/csharp-show-hide-taskbar-by-api/
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top