Exemplo n.º 1
0
 private void findClose_Click(object sender, EventArgs e)
 {
     if (xFind != null)
     {
         xFind = null;
         //xFind.Hide();
     }
 }
Exemplo n.º 2
0
 public XHelper()
 {
     InitializeComponent();
     //Initialise Globals
     this.CurrentFile   = string.Empty;
     this.IsTextChanged = false;
     XHelperTextUpdate();
     xFind      = null;
     searchTerm = null;
 }
Exemplo n.º 3
0
 private void menuEditFind_Click(object sender, EventArgs e)
 {
     if (xFind == null)
     {
         xFind           = new XFind();
         xFind.FindNext += new FindNextEventHandler(findNext_Click);
         xFind.Cancel   += new CancelEventHandler(findCancel_Click);
         xFind.Close    += new CloseEventHandler(findClose_Click);
     }
     xFind.Show();
 }