private void B3_TextChanged(object sender, TextChangedEventArgs e) { if (B3.Text.Length > 0) { B4.Focus(); } }
void SetNotifyMode() { if (this.MapPictureBox.GetNotifyMode()) {//既に通知モードなので何もしない. return; } //一度フォーカスを当てて、位置選択状態にする Control prevFocusedControl = this.ActiveControl; B4.Focus(); if (prevFocusedControl == null) { AddressList.Focus(); } else { prevFocusedControl.Focus(); } }