示例#1
0
        public bool BringTopForMs(int ms = 1000)
        {
            bool     rt  = false;
            DateTime now = DateTime.Now;

            while (!rt && now.xElapse().TotalMilliseconds < (double)ms)
            {
                if (WinApi.BringTop(this.RootHwnd))
                {
                    rt = true;
                }
                else
                {
                    Thread.Sleep(50);
                }
            }
            return(rt);
        }
示例#2
0
 public void BringTop()
 {
     WinApi.BringTop(Hwnd.Handle);
 }