Esempio n. 1
0
 public void ManualOpen(Point point, HWNDList hwnds)
 {
     _hoverTimer.Stop();
     _hoverTimer.Interval = TimeSpan.FromSeconds(.75);
     //Activate();
     Focus();
     Show();
     Left = point.X;
     Top  = point.Y;
 }
Esempio n. 2
0
 public void StartHover(Point point, HWNDList hwnds)
 {
     targetLocation = point;
     _hoverTimer.Start();
     _hwnds = hwnds;
 }