Ejemplo n.º 1
0
 protected void OnWindowOver(WindowSelect_EventArgs e)
 {
     if (WindowOver != null)
     {
         WindowOver(this, e);
     }
 }
Ejemplo n.º 2
0
Archivo: frmMain.cs Proyecto: sbec/KB
 private void windowSelector1_WindowSelect(object sender, WindowSelect_EventArgs e)
 {
     if (_Windows.Contains(e.Info) == false)
     {
         _Windows.Add(e.Info);
         RefreshWindows();
     }
     pnlWindowInfo.Visible = false;
 }
Ejemplo n.º 3
0
 protected void OnWindowSelect(WindowSelect_EventArgs e)
 {
     if (WindowSelect != null)
         WindowSelect(this, e);
 }
Ejemplo n.º 4
0
Archivo: frmMain.cs Proyecto: sbec/KB
 private void windowSelector1_WindowOver(object sender, WindowSelect_EventArgs e)
 {
     lblText.Text = e.Info.Text;
     lblHandle.Text = e.Info.Handle.ToString();
     pnlWindowInfo.Visible = true;
 }