PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/BookReader/BookReader/Dialogs/PasswordWindow.xaml.cs

#
C# | 19 lines | 14 code | 2 blank | 3 comment | 0 complexity | 2ffd26fe09af1f766069f69a2d2575ac MD5 | raw file
  1. namespace BookReader.Dialogs
  2. {
  3. /// <summary>
  4. /// Interaction logic for Login.xaml
  5. /// </summary>
  6. public partial class PasswordWindow : HeaderedDialogWindow
  7. {
  8. public PasswordWindow()
  9. {
  10. InitializeComponent();
  11. }
  12. private void btnConfirm_Click(object sender, System.Windows.RoutedEventArgs e)
  13. {
  14. this.DialogResult = true;
  15. }
  16. }
  17. }