用c#做的窗体,当按显示桌面时,该窗体不会在桌面中消失!
比如:迅雷的图标,但按显示桌面时它不会在桌面上消失!!而我用c#做做的window窗体就是要实现这种效果,即当按显示桌面时窗体还留在桌面上而不最小化,如果知道的话,请告诉...
比如:迅雷的图标,但按显示桌面时它不会在桌面上消失!!而我用c#做做的window窗体就是要实现这种效果,即当按显示桌面时窗体还留在桌面上而不最小化,如果知道的话,请告诉小弟,谢谢·····
急啊··· 注意是c#编写的 哦!!很急啊····· 展开
急啊··· 注意是c#编写的 哦!!很急啊····· 展开
展开全部
先放一个notifyIcon控件,表示图标,比如你说的迅雷图标
//在窗体中找到Deactivate事件,表示窗体最小化,小图标出现
private void form1_Deactivate(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
this.Visible = false;
this.notifyIcon1.Visible = true;
}
}
// notifyIcon1控件事件,表示点击任务栏中显示的小图标窗体显示正常的大小
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
{
this.Visible = true;
this.WindowState = FormWindowState.Normal;
this.Activate();
this.notifyIcon1.Visible = false;
}
//在窗体中找到Deactivate事件,表示窗体最小化,小图标出现
private void form1_Deactivate(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
this.Visible = false;
this.notifyIcon1.Visible = true;
}
}
// notifyIcon1控件事件,表示点击任务栏中显示的小图标窗体显示正常的大小
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
{
this.Visible = true;
this.WindowState = FormWindowState.Normal;
this.Activate();
this.notifyIcon1.Visible = false;
}
展开全部
在窗体的Deactivate事件中加入:
MessageBox.Show("哥们雄风依旧!");
这样当你的窗体被停用(按下'显示桌面')时就会跳出警告框,确定后窗体依然显示.
MessageBox.Show("哥们雄风依旧!");
这样当你的窗体被停用(按下'显示桌面')时就会跳出警告框,确定后窗体依然显示.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
引用:
using System.Runtime.InteropServices;
在定义部分引入下面两个函数:
[DllImport("user32")]
private static extern IntPtr FindWindow(string lpClassName,string lpWindowName);
[DllImport("user32")]
private static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
在窗体On_Load事件中添加(Santos的代码):
IntPtr hDeskTop=FindWindow("Progman", "Program Manager");
SetParent(this.Handle,hDeskTop);
using System.Runtime.InteropServices;
在定义部分引入下面两个函数:
[DllImport("user32")]
private static extern IntPtr FindWindow(string lpClassName,string lpWindowName);
[DllImport("user32")]
private static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
在窗体On_Load事件中添加(Santos的代码):
IntPtr hDeskTop=FindWindow("Progman", "Program Manager");
SetParent(this.Handle,hDeskTop);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询