1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Shapes;
- using WpfApp1.Models;
- namespace WpfApp1
- {
- /// <summary>
- /// Логика взаимодействия для ForgotPassword.xaml
- /// </summary>
- public partial class ForgotPassword : Window
- {
- ApplicationContext db = new ApplicationContext();
- public ForgotPassword()
- {
- InitializeComponent();
- }
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- // гарантируем, что база данных создана
- db.Database.EnsureCreated();
- // загружаем данные из БД
- db.Users.Load();
- // и устанавливаем данные в качестве контекста
- Users login = db.Users.Local.FirstOrDefault(x => x.Login == tbLogin.Text);
- if (login != null)
- {
- MessageBox.Show($"Ваш пароль {login.Password}");
- Close();
- }
- else
- {
- MessageBox.Show("Такого логина не существует!");
- }
- }
- }
- }
|