private void btGoodbye_Click(object sender, RoutedEventArgs e) { //회원탈퇴 버튼 if (tbPW.Password.Length == 0) { MessageBox.Show("PW를 채우세요.", "입력 오류", MessageBoxButton.OK, MessageBoxImage.Warning); return; } Kind = true; ID = start.ID; ChangeCheck check = new ChangeCheck(this); check.ShowDialog(); }
private void btCPW_Click(object sender, RoutedEventArgs e) { //암호변경 버튼 if (tbCPW.Password.Length == 0 || tbCPWC.Password.Length == 0) { MessageBox.Show("CPW, CPWC를 채우세요.", "입력 오류", MessageBoxButton.OK, MessageBoxImage.Warning); return; } if (!tbCPW.Password.Equals(tbCPWC.Password)) { MessageBox.Show("CPW, CPWC가 서로 암호가 다릅니다. \n 같게 입력해주세요.", "입력 오류", MessageBoxButton.OK, MessageBoxImage.Warning); return; } Kind = false; ID = start.ID; ChangeCheck check = new ChangeCheck(this); check.ShowDialog(); }