Parcourir la source

Загрузить файлы 'Pages'

nikita il y a 2 ans
Parent
commit
76c5ae9f23
1 fichiers modifiés avec 44 ajouts et 0 suppressions
  1. 44 0
      Pages/AvtoPage.xaml.cs

+ 44 - 0
Pages/AvtoPage.xaml.cs

@@ -0,0 +1,44 @@
+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.Navigation;
+using System.Windows.Shapes;
+
+namespace WpfApp4
+{
+    /// <summary>
+    /// Логика взаимодействия для AvtoPage.xaml
+    /// </summary>
+    public partial class AvtoPage : Page
+    {
+        public AvtoPage()
+        {
+            InitializeComponent();
+        }
+
+        private void BTNAvto_Click(object sender, RoutedEventArgs e)
+        {
+            int paswordCode = TBPasAvto.Password.GetHashCode();
+            int role = 0;
+            Сотрудники Empl = BaseClass.Base.Сотрудники.FirstOrDefault(z => z.Логин == TBLoginAvto.Text && z.Пароль == paswordCode);
+            if (Empl == null)
+            {
+                MessageBox.Show("Вы не зарегистрированы");
+            }
+            else
+            {              
+               role = Empl.ID_Роль;
+               FrameClass.FrameMain.Navigate(new OperatePage(role,Empl));                                                             
+            }
+        }
+    }
+}