-
Visual C# 隐藏、显示开始按钮
C# 隐藏、显示开始按钮,把Windows的开始菜单隐藏起来,看不到“开始”菜单了,Windows7则隐藏了窗口图标,不过这样会很不方便哦,本源码只是学习C#与Windows之间的相关编程技巧,下面的代码实现了隐藏显示开始菜单的功能:
[DllImport("user32.dll")]//寻找窗口列表中第一个符合指定条件的顶级窗口
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]//在窗口列表中寻找与指定条件相符的第一个子窗口
public static extern int FindWindowEx(int hWnd1, int hWnd2, string lpsz1, string lpsz2);
[DllImport("user32.dll")]//控制窗口的可见性
public static extern int ShowWindow(int hwnd, int nCmdShow);
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_HIDE);//隐藏开始按钮
else if (radioButton2.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_SHOW);//显示开始按钮
}
- 2022-05-20 11:42:02下载
- 积分:1
-
Indicador_Clubinarias_5.1
说明: Clubinarias ,is one of the best indicator to use in the forex markets, and actually has the best accuracy to trade automatically.
- 2020-06-24 21:20:01下载
- 积分:1
-
相干积累
雷达相干积累、非相干积累的matlab仿真,内附详细注释,可自行根据需求修改(Radar coherent accumulation, non coherent accumulation of MATLAB simulation, containing detailed notes, can be modified according to their own needs)
- 2020-09-21 18:07:50下载
- 积分:1
-
VB仿Windows加强版画图程序源码
VB仿Windows加强版画图程序源码,支持更多规定格式的开关、几何图形,不规则图形等,还带有滤镜功能,比Windows自带的画图板功能更多,界面也更专业,通过这个小程序你可多多学习一些VB在绘图方面的基础知识。
- 2022-07-28 08:44:26下载
- 积分:1
-
flyme7 root
146849215+8182161261281(1456216126184581hrhrqhq)
- 2020-06-20 09:20:01下载
- 积分:1
-
frmGoodsOutManage
说明: Some file for this site to shut the f up.
- 2020-06-25 06:20:02下载
- 积分:1
-
很多ic芯片的资料,mcu,e2,时钟,红外,485,232接口
很多ic芯片的资料,mcu,e2,时钟,红外,485,232接口-Ic a lot of information on the chip, mcu, e2, clock, infrared, 485232 Interface
- 2022-03-23 15:23:46下载
- 积分:1
-
HexToFloat
说明: 这个小工具可以实现浮点数(4个字节)和实数之间的转换。(This gadget can achieve floating-point numbers (4 bytes) and the conversion between real numbers.)
- 2008-10-20 10:47:00下载
- 积分:1
-
proteus
一些你不懂得的元器件英文名称这里都可以找到,(Some of the components you do not know the name in English can be found here,)
- 2013-08-16 10:02:52下载
- 积分:1
-
编程学习资料(百度网盘链接)
包含及丰富的百度云盘文件分享,全部为编程资料(Including and rich Baidu cloud disk file sharing, all for programming materials)
- 2020-06-19 07:00:01下载
- 积分:1