private void Find_FindHex_Checked(object sender, EventArgs e) { FindHexBox.Enabled = true; FindTextBox.Enabled = false; FindHexBox.Focus(); }
/// <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(); } }