Example #1
0
 protected void OnWindowOver(WindowSelect_EventArgs e)
 {
     if (WindowOver != null)
     {
         WindowOver(this, e);
     }
 }
Example #2
0
File: frmMain.cs Project: 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;
 }
Example #3
0
 protected void OnWindowSelect(WindowSelect_EventArgs e)
 {
     if (WindowSelect != null)
         WindowSelect(this, e);
 }
Example #4
0
File: frmMain.cs Project: 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;
 }