this.TopMost=true;这个可以使窗体在下次操作之前都在最前。[DllImport("user32.dll")][return: MarshalAs(UnmanagedType.Bool)]static extern bool SetForegroundWindow(IntPtr hWnd);这样调用:SetForegroundWindow(this.Handle); //当前窗体是this这个也可以,但前提是窗体不能最小化,要不找不到句柄