diff --git a/WpfApp1/WpfApp1.sln b/WpfApp1/WpfApp1.sln
new file mode 100644
index 0000000..a02944e
--- /dev/null
+++ b/WpfApp1/WpfApp1.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.13.35919.96 d17.13
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp1", "WpfApp1\WpfApp1.csproj", "{A9E3D24A-31DC-4ECC-B6FA-D61DBF8A1E5A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A9E3D24A-31DC-4ECC-B6FA-D61DBF8A1E5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A9E3D24A-31DC-4ECC-B6FA-D61DBF8A1E5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A9E3D24A-31DC-4ECC-B6FA-D61DBF8A1E5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A9E3D24A-31DC-4ECC-B6FA-D61DBF8A1E5A}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {3273E183-8FE0-49D1-9B0D-1345CA662794}
+ EndGlobalSection
+EndGlobal
diff --git a/WpfApp1/WpfApp1/App.config b/WpfApp1/WpfApp1/App.config
new file mode 100644
index 0000000..193aecc
--- /dev/null
+++ b/WpfApp1/WpfApp1/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WpfApp1/WpfApp1/App.xaml b/WpfApp1/WpfApp1/App.xaml
new file mode 100644
index 0000000..83a7199
--- /dev/null
+++ b/WpfApp1/WpfApp1/App.xaml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WpfApp1/WpfApp1/App.xaml.cs b/WpfApp1/WpfApp1/App.xaml.cs
new file mode 100644
index 0000000..16361bd
--- /dev/null
+++ b/WpfApp1/WpfApp1/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace WpfApp1
+{
+ ///
+ /// Логика взаимодействия для App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/WpfApp1/WpfApp1/Client.cs b/WpfApp1/WpfApp1/Client.cs
new file mode 100644
index 0000000..f04f608
--- /dev/null
+++ b/WpfApp1/WpfApp1/Client.cs
@@ -0,0 +1,72 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WpfApp1
+{
+ public class Client
+ {
+ private string Surname;
+ private string Name;
+ private string Patronymic;
+ private string Gender;
+ private DateTime Birthday;
+ private string Address;
+ private string PhoneNumber;
+ private string SubscriptionNumber;
+
+ public string surname
+ {
+ get
+ {
+ return this.Surname;
+ }
+ set
+ {
+ this.Surname = value;
+ }
+ }
+ public string name
+ {
+ get { return this.Name; }
+ set { this.Name = value; }
+ }
+ public string patronymic
+ {
+ get { return this.Patronymic; }
+ set { this.Patronymic = value; }
+ }
+
+ public string gender
+ {
+ get { return this.Gender; }
+ set { this.Gender = value; }
+ }
+
+ public DateTime birthday
+ {
+ get { return this.Birthday; }
+ set { this.Birthday = value; }
+ }
+
+ public string address
+ {
+ get { return this.Address; }
+ set { this.Address = value; }
+ }
+
+ public string phoneNumber
+ {
+ get { return this.PhoneNumber; }
+ set { this.PhoneNumber = value; }
+ }
+
+ public string subscriptionNumber
+ {
+ get { return this.SubscriptionNumber; }
+ set { this.SubscriptionNumber = value; }
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1/Coach.cs b/WpfApp1/WpfApp1/Coach.cs
new file mode 100644
index 0000000..ff57716
--- /dev/null
+++ b/WpfApp1/WpfApp1/Coach.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WpfApp1
+{
+ public class Coach
+ {
+ public string Surname { get; set; }
+ public string Name { get; set; }
+ public string Patronymic { get; set; }
+ public string Speciality { get; set; }
+ public Coach() { }
+ }
+}
diff --git a/WpfApp1/WpfApp1/Entry.cs b/WpfApp1/WpfApp1/Entry.cs
new file mode 100644
index 0000000..2b5b6b4
--- /dev/null
+++ b/WpfApp1/WpfApp1/Entry.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WpfApp1
+{
+ public class Entry
+ {
+ public Client Client {get; set;}
+ public Coach Coach {get; set;}
+ public DateTime DateEntry {get; set;}
+ public DateTime TimeRecord {get; set;}
+ public Entry()
+ {
+
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1/MainWindow.xaml b/WpfApp1/WpfApp1/MainWindow.xaml
new file mode 100644
index 0000000..0386d3c
--- /dev/null
+++ b/WpfApp1/WpfApp1/MainWindow.xaml
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WpfApp1/WpfApp1/MainWindow.xaml.cs b/WpfApp1/WpfApp1/MainWindow.xaml.cs
new file mode 100644
index 0000000..48a1918
--- /dev/null
+++ b/WpfApp1/WpfApp1/MainWindow.xaml.cs
@@ -0,0 +1,152 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+using System.Windows;
+using System.IO;
+using System.Text.Json;
+
+
+
+namespace WpfApp1
+{
+ ///
+ /// Логика взаимодействия для MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ private List _clients = new List();
+ private const string FilePath = "clients.json";
+ private Client _selectedClient;
+
+ public MainWindow()
+ {
+ InitializeComponent();
+ LoadData();
+ }
+ private void SaveData()
+ {
+ string json = JsonSerializer.Serialize(_clients);
+ File.WriteAllText(FilePath, json);
+ }
+
+ private void LoadData()
+ {
+ if (File.Exists(FilePath))
+ {
+ string json = File.ReadAllText(FilePath);
+ _clients = JsonSerializer.Deserialize>(json) ?? new List();
+ RefreshList();
+ }
+ }
+
+ private void RefreshList()
+ {
+ ClientListBox.ItemsSource = null;
+ ClientListBox.ItemsSource = _clients.Select(c => $"{c.surname} {c.name} {c.patronymic}").ToList();
+ }
+
+
+ private bool IsValid()
+ {
+ if (string.IsNullOrWhiteSpace(txtSurname.Text) || string.IsNullOrWhiteSpace(txtName.Text) ||
+ string.IsNullOrWhiteSpace(txtPhone.Text) || string.IsNullOrWhiteSpace(txtAddress.Text))
+ {
+ MessageBox.Show("Заполните все поля!");
+ return false;
+ }
+
+ if (dpBirthday.SelectedDate >= DateTime.Now)
+ {
+ MessageBox.Show("Дата рождения должна быть меньше текущей!");
+ return false;
+ }
+
+ if (!Regex.IsMatch(txtSubscription.Text, @"^\d{8}$"))
+ {
+ MessageBox.Show("Номер абонемента должен состоять из 8 цифр!");
+ return false;
+ }
+
+ return true;
+ }
+
+ private void btnAdd_Click(object sender, RoutedEventArgs e)
+ {
+ if (!IsValid()) return;
+
+ var newClient = new Client
+ {
+ surname = txtSurname.Text,
+ name = txtName.Text,
+ patronymic = txtPatronymic.Text,
+ address = txtAddress.Text,
+ phoneNumber = txtPhone.Text,
+ subscriptionNumber = txtSubscription.Text,
+ birthday = dpBirthday.SelectedDate ?? DateTime.Now,
+ gender = rbMale.IsChecked == true ? "М" : "Ж"
+ };
+
+ _clients.Add(newClient);
+ SaveData();
+ RefreshList();
+ MessageBox.Show("Клиент добавлен!");
+ }
+ private void ClientListBox_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
+ {
+ if (ClientListBox.SelectedIndex == -1) return;
+
+ _selectedClient = _clients[ClientListBox.SelectedIndex];
+
+
+ txtSurname.Text = _selectedClient.surname;
+ txtName.Text = _selectedClient.name;
+ txtPatronymic.Text = _selectedClient.patronymic;
+ txtAddress.Text = _selectedClient.address;
+ txtPhone.Text = _selectedClient.phoneNumber;
+ txtSubscription.Text = _selectedClient.subscriptionNumber;
+ dpBirthday.SelectedDate = _selectedClient.birthday;
+
+ if (_selectedClient.gender == "М") rbMale.IsChecked = true;
+ else rbFemale.IsChecked = true;
+
+
+ txtSurname.IsEnabled = false;
+ txtName.IsEnabled = false;
+ txtPatronymic.IsEnabled = false;
+ dpBirthday.IsEnabled = false;
+ txtSubscription.IsEnabled = false;
+ }
+ private void btnEdit_Click(object sender, RoutedEventArgs e)
+ {
+ if (_selectedClient == null) return;
+
+ // Адрес и Телефон
+ _selectedClient.address = txtAddress.Text;
+ _selectedClient.phoneNumber = txtPhone.Text;
+
+ SaveData();
+ MessageBox.Show("Данные обновлены!");
+ }
+
+ private void btnRecord_Click(object sender, RoutedEventArgs e)
+ {
+ if (_selectedClient == null)
+ {
+ MessageBox.Show("Сначала выберите клиента в списке!");
+ return;
+ }
+
+ // Пример списка тренеров (обычно загружается из файла)
+ List coaches = new List {
+ new Coach { Surname="Ахматова В.А.", Speciality="Фитнес-ЙОГА" },
+ new Coach { Surname="Петров И.И.", Speciality="Силовой тренинг" }
+ };
+
+ RecordWindow recordWin = new RecordWindow(_selectedClient, coaches);
+ recordWin.ShowDialog();
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1/Properties/AssemblyInfo.cs b/WpfApp1/WpfApp1/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..3989eca
--- /dev/null
+++ b/WpfApp1/WpfApp1/Properties/AssemblyInfo.cs
@@ -0,0 +1,52 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набор атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
+// связанные со сборкой.
+[assembly: AssemblyTitle("WpfApp1")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("HP Inc.")]
+[assembly: AssemblyProduct("WpfApp1")]
+[assembly: AssemblyCopyright("Copyright © HP Inc. 2026")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// из модели COM, установите атрибут ComVisible для этого типа в значение true.
+[assembly: ComVisible(false)]
+
+//Чтобы начать создание локализуемых приложений, задайте
+//CultureYouAreCodingWith в файле .csproj
+//в . Например, при использовании английского (США)
+//в своих исходных файлах установите в en-US. Затем отмените преобразование в комментарий
+//атрибута NeutralResourceLanguage ниже. Обновите "en-US" в
+//строка внизу для обеспечения соответствия настройки UICulture в файле проекта.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //где расположены словари ресурсов по конкретным тематикам
+ //(используется, если ресурс не найден на странице,
+ // или в словарях ресурсов приложения)
+ ResourceDictionaryLocation.SourceAssembly //где расположен словарь универсальных ресурсов
+ //(используется, если ресурс не найден на странице,
+ // в приложении или в каких-либо словарях ресурсов для конкретной темы)
+)]
+
+
+// Сведения о версии для сборки включают четыре следующих значения:
+//
+// Основной номер версии
+// Дополнительный номер версии
+// Номер сборки
+// Номер редакции
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/WpfApp1/WpfApp1/Properties/Resources.Designer.cs b/WpfApp1/WpfApp1/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..8b3898f
--- /dev/null
+++ b/WpfApp1/WpfApp1/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Этот код был создан программным средством.
+// Версия среды выполнения: 4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
+// код создан повторно.
+//
+//------------------------------------------------------------------------------
+
+namespace WpfApp1.Properties
+{
+
+
+ ///
+ /// Класс ресурсов со строгим типом для поиска локализованных строк и пр.
+ ///
+ // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder
+ // класс с помощью таких средств, как ResGen или Visual Studio.
+ // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen
+ // с параметром /str или заново постройте свой VS-проект.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WpfApp1.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Переопределяет свойство CurrentUICulture текущего потока для всех
+ /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1/Properties/Resources.resx b/WpfApp1/WpfApp1/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/WpfApp1/WpfApp1/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/WpfApp1/WpfApp1/Properties/Settings.Designer.cs b/WpfApp1/WpfApp1/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..6512fd0
--- /dev/null
+++ b/WpfApp1/WpfApp1/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace WpfApp1.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1/Properties/Settings.settings b/WpfApp1/WpfApp1/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/WpfApp1/WpfApp1/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WpfApp1/WpfApp1/RecordWindow.xaml b/WpfApp1/WpfApp1/RecordWindow.xaml
new file mode 100644
index 0000000..cbf3579
--- /dev/null
+++ b/WpfApp1/WpfApp1/RecordWindow.xaml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WpfApp1/WpfApp1/RecordWindow.xaml.cs b/WpfApp1/WpfApp1/RecordWindow.xaml.cs
new file mode 100644
index 0000000..f425189
--- /dev/null
+++ b/WpfApp1/WpfApp1/RecordWindow.xaml.cs
@@ -0,0 +1,68 @@
+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 WpfApp1
+{
+ ///
+ /// Логика взаимодействия для RecordWindow.xaml
+ ///
+ public partial class RecordWindow : Window
+ {
+ private Client _currentClient;
+ private List _allCoaches; // Список всех тренеров (загрузи его из файла или создай вручную)
+
+ public RecordWindow(Client client, List coaches)
+ {
+ InitializeComponent();
+ _currentClient = client;
+ _allCoaches = coaches;
+
+ txtClientName.Text = $"{client.surname} {client.name}";
+
+ // Заполняем специальности уникальными значениями
+ cbSpeciality.ItemsSource = _allCoaches.Select(c => c.Speciality).Distinct().ToList();
+ dpDate.SelectedDate = DateTime.Now;
+ }
+
+ // Фильтрация тренеров при выборе специальности
+ private void cbSpeciality_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ string selectedSpec = cbSpeciality.SelectedItem as string;
+ cbCoach.ItemsSource = _allCoaches.Where(c => c.Speciality == selectedSpec).ToList();
+ }
+
+ private void btnSaveRecord_Click(object sender, RoutedEventArgs e)
+ {
+ if (cbCoach.SelectedItem == null || dpDate.SelectedDate == null)
+ {
+ MessageBox.Show("Выберите тренера и дату!");
+ return;
+ }
+
+ // Создаем объект записи
+ Entry newEntry = new Entry
+ {
+ Client = _currentClient,
+ Coach = (Coach)cbCoach.SelectedItem,
+ DateEntry = dpDate.SelectedDate.Value,
+ TimeRecord = DateTime.Parse(txtTime.Text) // Упрощенно для примера
+ };
+
+ // Тут добавь логику сохранения Entry в твой глобальный List или файл
+
+ MessageBox.Show("Запись успешно создана!");
+ this.Close(); // Возврат на главную форму
+ }
+ }
+}
diff --git a/WpfApp1/WpfApp1/WpfApp1.csproj b/WpfApp1/WpfApp1/WpfApp1.csproj
new file mode 100644
index 0000000..33fdd0d
--- /dev/null
+++ b/WpfApp1/WpfApp1/WpfApp1.csproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {A9E3D24A-31DC-4ECC-B6FA-D61DBF8A1E5A}
+ WinExe
+ WpfApp1
+ WpfApp1
+ v4.8
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+ true
+
+
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.5\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll
+
+
+
+ ..\packages\System.Buffers.4.6.1\lib\net462\System.Buffers.dll
+
+
+
+ ..\packages\System.IO.Pipelines.10.0.5\lib\net462\System.IO.Pipelines.dll
+
+
+ ..\packages\System.Memory.4.6.3\lib\net462\System.Memory.dll
+
+
+
+ ..\packages\System.Numerics.Vectors.4.6.1\lib\net462\System.Numerics.Vectors.dll
+
+
+ ..\packages\System.Runtime.CompilerServices.Unsafe.6.1.2\lib\net462\System.Runtime.CompilerServices.Unsafe.dll
+
+
+ ..\packages\System.Text.Encodings.Web.10.0.5\lib\net462\System.Text.Encodings.Web.dll
+
+
+ ..\packages\System.Text.Json.10.0.5\lib\net462\System.Text.Json.dll
+
+
+ ..\packages\System.Threading.Tasks.Extensions.4.6.3\lib\net462\System.Threading.Tasks.Extensions.dll
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ RecordWindow.xaml
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+
+
+
+ MainWindow.xaml
+ Code
+
+
+ Designer
+ MSBuild:Compile
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+
+
+ Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их. Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.
+
+
+
+
\ No newline at end of file
diff --git a/WpfApp1/WpfApp1/packages.config b/WpfApp1/WpfApp1/packages.config
new file mode 100644
index 0000000..e7afa7f
--- /dev/null
+++ b/WpfApp1/WpfApp1/packages.config
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file