Ejemplo n.º 1
0
        private void Find_FindHex_Checked(object sender, EventArgs e)
        {
            FindHexBox.Enabled  = true;
            FindTextBox.Enabled = false;

            FindHexBox.Focus();
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Is called when this find window is activated
 /// </summary>
 void Core_OnFocus(object sender, EventArgs e)
 {
     if (FindTextRadioBox.Checked)
     {
         FindTextBox.Focus();
     }
     else
     {
         FindHexBox.Focus();
     }
 }