diff --git a/App.xaml b/App.xaml
index 1e1371b..96272f2 100644
--- a/App.xaml
+++ b/App.xaml
@@ -2,8 +2,66 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EmployeeManager"
- StartupUri="MainWindow.xaml">
+ StartupUri="View/MainWindow.xaml">
-
+
+
diff --git a/EmployeeManager.csproj b/EmployeeManager.csproj
index c9e6206..99cde6f 100644
--- a/EmployeeManager.csproj
+++ b/EmployeeManager.csproj
@@ -57,6 +57,12 @@
+
+ MessageWindow.xaml
+
+
+ WorkInPhysicalPerson.xaml
+
MSBuild:Compile
Designer
@@ -69,6 +75,14 @@
MainWindow.xaml
Code
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
diff --git a/View/MainWindow.xaml b/View/MainWindow.xaml
index 54e1392..ea0edb5 100644
--- a/View/MainWindow.xaml
+++ b/View/MainWindow.xaml
@@ -1,12 +1,26 @@
+ Title="Отдел кадров УлГТУ" Height="450" Width="800" Background="#0D2D4F">
+
+
-
+
+
+
+
+
+
+
+
+
+
diff --git a/View/MessageWindow.xaml b/View/MessageWindow.xaml
new file mode 100644
index 0000000..a65a025
--- /dev/null
+++ b/View/MessageWindow.xaml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
diff --git a/View/MessageWindow.xaml.cs b/View/MessageWindow.xaml.cs
new file mode 100644
index 0000000..a3b9767
--- /dev/null
+++ b/View/MessageWindow.xaml.cs
@@ -0,0 +1,27 @@
+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;
+
+namespace EmployeeManager.View
+{
+ ///
+ /// Логика взаимодействия для MessageWindow.xaml
+ ///
+ public partial class MessageWindow : Window
+ {
+ public MessageWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/PhysicalPerson/WorkInPhysicalPerson.xaml b/View/PhysicalPerson/WorkInPhysicalPerson.xaml
new file mode 100644
index 0000000..f23e728
--- /dev/null
+++ b/View/PhysicalPerson/WorkInPhysicalPerson.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/View/PhysicalPerson/WorkInPhysicalPerson.xaml.cs b/View/PhysicalPerson/WorkInPhysicalPerson.xaml.cs
new file mode 100644
index 0000000..c849cca
--- /dev/null
+++ b/View/PhysicalPerson/WorkInPhysicalPerson.xaml.cs
@@ -0,0 +1,27 @@
+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;
+
+namespace EmployeeManager.View.PhysicalPerson
+{
+ ///
+ /// Логика взаимодействия для WorkInPhysicalPerson.xaml
+ ///
+ public partial class WorkInPhysicalPerson : Window
+ {
+ public WorkInPhysicalPerson()
+ {
+ InitializeComponent();
+ }
+ }
+}