c#实现Form窗体始终在桌面最前端显示

方法一this

//调用APIorm

[System.Runtime.InteropServices.DllImport("user32", CharSet = System.Runtime.InteropServices.CharSet.Auto, ExactSpelling = true)]事件

public static extern IntPtr GetFocus(); //得到本窗体的句柄string

[System.Runtime.InteropServices.DllImport("user32", EntryPoint = "SetForegroundWindow")]变量

public static extern bool SetFocus(IntPtr hWnd);//设置此窗体为活动窗体object


// 定义变量,句柄类型定时器

public IntPtr han;方法

private void Form1_Load(object sender, EventArgs e){im

//在窗体加载的时候给变量赋值,即将当前窗体的句柄赋给变量static

han = this.Handle;

}
private void timer1_Tick(object sender, EventArgs e){

// 加载一个定时器控件,验证当前WINDOWS句柄是否和本窗体的句柄同样,若是不同,则激活本窗体

if (han != GetFocus()){

SetFocus(han);

}

this.WindowState = FormWindowState.Normal;

}

 

方法二

[System.Runtime.InteropServices.DllImport("user32")]
private static extern IntPtr GetActiveWindow();//获取当前窗体的活动状态

// 判断当前窗口是否处于活动状态的方法

private bool ThisIsActive(){ return (GetActiveWindow() == this.Handle);}

private void timer1_Tick(object sender, EventArgs e){

if (!ThisIsActive()){

this.Activate();

}

this.WindowState = FormWindowState.Normal;

}

 

方法三

 

[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);