首先
[DllImport("user32.dll", EntryPoint = "SetWindowPos")]
public static extern int SetWindowPos(int hwnd, int hWndInsertAfter, int x, int y, int cx, int cy, int wFlags);
然后
IntPtr hwnd = (某个窗口).Handle;
SetWindowPos(hwnd.ToInt32(), -1, 0, 0, 0, 0, 0x001 | 0x002 | 0x040);
置顶可以将topmost设为true;
上面两位调用windiows API函数当也是可以的。。
设置其Topmost属性为True