private void TxtIdx_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == 13) { TxtFullName.Focus(); } }
private void UserPassWordConfirm_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { TxtFullName.Focus(); } }
private void wdwEmployeeRelative_Loaded(object sender, RoutedEventArgs e) { if (TxtFullName.Text.Contains("-")) { TxtFullName.Text = TxtFullName.Text.Replace('-', ' '); } TxtFullName.Focus(); }
private void BtnAddNew_Click(object sender, RoutedEventArgs e) { TxtFullName.Focus(); }
private void Window_Loaded(object sender, RoutedEventArgs e) { TxtFullName.Focus(); }
private void wdwEmployeeTestimony_Loaded(object sender, RoutedEventArgs e) { TxtFullName.Focus(); }
private void ClearInput() { TxtIdx.Text = TxtFullName.Text = TxtMobile.Text = TxtAddr.Text = ""; TxtFullName.Focus(); }
private void FrmMain_Load(object sender, EventArgs e) { RefreshData(); TxtFullName.Focus(); }