From 276ea912ec18d206d34f8d515fa1d8e089b1fdf5 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 26 Feb 2025 15:54:51 +0300 Subject: [PATCH] init --- AddClient.axaml | 36 ++ AddClient.axaml.cs | 108 ++++++ FunctionWindow.axaml | 3 +- FunctionWindow.axaml.cs | 8 +- NewOrderWindow.axaml | 45 +++ NewOrderWindow.axaml.cs | 39 +++ OrderWindow.axaml | 64 ++++ OrderWindow.axaml.cs | 116 +++++++ bin/Debug/net8.0/demo_hard.dll | Bin 51712 -> 72704 bytes bin/Debug/net8.0/demo_hard.exe | Bin 139264 -> 139264 bytes bin/Debug/net8.0/demo_hard.pdb | Bin 24204 -> 31176 bytes .../net8.0/Avalonia/Resources.Inputs.cache | 2 +- obj/Debug/net8.0/Avalonia/demo_hard.dll | Bin 51712 -> 72704 bytes obj/Debug/net8.0/Avalonia/demo_hard.pdb | Bin 24204 -> 31176 bytes obj/Debug/net8.0/Avalonia/references | 326 +++++++++--------- obj/Debug/net8.0/Avalonia/resources | Bin 7676 -> 15943 bytes obj/Debug/net8.0/apphost.exe | Bin 139264 -> 139264 bytes obj/Debug/net8.0/demo_hard.AssemblyInfo.cs | 2 +- .../net8.0/demo_hard.AssemblyInfoInputs.cache | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 9 + .../demo_hard.csproj.AssemblyReference.cache | Bin 23524 -> 30496 bytes .../demo_hard.csproj.CoreCompileInputs.cache | 2 +- obj/Debug/net8.0/demo_hard.dll | Bin 35840 -> 52736 bytes obj/Debug/net8.0/demo_hard.pdb | Bin 22732 -> 27952 bytes obj/Debug/net8.0/ref/demo_hard.dll | Bin 11776 -> 12288 bytes .../net8.0/refint/Avalonia/demo_hard.dll | Bin 11776 -> 12288 bytes obj/Debug/net8.0/refint/demo_hard.dll | Bin 12288 -> 13312 bytes obj/demo_hard.csproj.nuget.dgspec.json | 10 +- obj/project.assets.json | 10 +- obj/project.nuget.cache | 10 +- obj/project.packagespec.json | 2 +- obj/rider.project.model.nuget.info | 2 +- obj/rider.project.restore.info | 2 +- 33 files changed, 609 insertions(+), 189 deletions(-) create mode 100644 AddClient.axaml create mode 100644 AddClient.axaml.cs create mode 100644 NewOrderWindow.axaml create mode 100644 NewOrderWindow.axaml.cs create mode 100644 OrderWindow.axaml create mode 100644 OrderWindow.axaml.cs diff --git a/AddClient.axaml b/AddClient.axaml new file mode 100644 index 0000000..a817680 --- /dev/null +++ b/AddClient.axaml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/FunctionWindow.axaml.cs b/FunctionWindow.axaml.cs index b1f11c3..88c9478 100644 --- a/FunctionWindow.axaml.cs +++ b/FunctionWindow.axaml.cs @@ -25,8 +25,6 @@ public partial class FunctionWindow : Window }; } - - public FunctionWindow() { InitializeComponent(); @@ -40,7 +38,11 @@ public partial class FunctionWindow : Window private void Next_Function_Button(object? sender, RoutedEventArgs e) { - new SallerWindow().ShowDialog(this); + new EnterHistoryWindow().ShowDialog(this); + } + private void newOrder_OnClick(object? sender, RoutedEventArgs e) + { + new OrderWindow().ShowDialog(this); } diff --git a/NewOrderWindow.axaml b/NewOrderWindow.axaml new file mode 100644 index 0000000..8b3d02a --- /dev/null +++ b/NewOrderWindow.axaml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +