ForgotPassword.xaml.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Shapes;
  15. using WpfApp1.Models;
  16. namespace WpfApp1
  17. {
  18. /// <summary>
  19. /// Логика взаимодействия для ForgotPassword.xaml
  20. /// </summary>
  21. public partial class ForgotPassword : Window
  22. {
  23. ApplicationContext db = new ApplicationContext();
  24. public ForgotPassword()
  25. {
  26. InitializeComponent();
  27. }
  28. private void Button_Click(object sender, RoutedEventArgs e)
  29. {
  30. // гарантируем, что база данных создана
  31. db.Database.EnsureCreated();
  32. // загружаем данные из БД
  33. db.Users.Load();
  34. // и устанавливаем данные в качестве контекста
  35. Users login = db.Users.Local.FirstOrDefault(x => x.Login == tbLogin.Text);
  36. if (login != null)
  37. {
  38. MessageBox.Show($"Ваш пароль {login.Password}");
  39. Close();
  40. }
  41. else
  42. {
  43. MessageBox.Show("Такого логина не существует!");
  44. }
  45. }
  46. }
  47. }