From 6500580d752f4b18b250086b101ff88346142213 Mon Sep 17 00:00:00 2001 From: RomanKamen Date: Tue, 31 Mar 2026 12:11:37 +0500 Subject: [PATCH] Six push --- ConsoleApp1/ConsoleApp1/Program.cs | 10 +- DebugAppWPF/DebugAppWPF.sln | 25 ++++ DebugAppWPF/DebugAppWPF/App.config | 6 + DebugAppWPF/DebugAppWPF/App.xaml | 9 ++ DebugAppWPF/DebugAppWPF/App.xaml.cs | 17 +++ DebugAppWPF/DebugAppWPF/DebugAppWPF.csproj | 104 ++++++++++++++++ DebugAppWPF/DebugAppWPF/MainWindow.xaml | 84 +++++++++++++ DebugAppWPF/DebugAppWPF/MainWindow.xaml.cs | 105 ++++++++++++++++ .../DebugAppWPF/Properties/AssemblyInfo.cs | 52 ++++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ .../DebugAppWPF/Properties/Resources.resx | 117 ++++++++++++++++++ .../Properties/Settings.Designer.cs | 30 +++++ .../DebugAppWPF/Properties/Settings.settings | 7 ++ REG_MARK_LIB/REG_MARK_LIB/REG_MARK.cs | 5 - 14 files changed, 632 insertions(+), 10 deletions(-) create mode 100644 DebugAppWPF/DebugAppWPF.sln create mode 100644 DebugAppWPF/DebugAppWPF/App.config create mode 100644 DebugAppWPF/DebugAppWPF/App.xaml create mode 100644 DebugAppWPF/DebugAppWPF/App.xaml.cs create mode 100644 DebugAppWPF/DebugAppWPF/DebugAppWPF.csproj create mode 100644 DebugAppWPF/DebugAppWPF/MainWindow.xaml create mode 100644 DebugAppWPF/DebugAppWPF/MainWindow.xaml.cs create mode 100644 DebugAppWPF/DebugAppWPF/Properties/AssemblyInfo.cs create mode 100644 DebugAppWPF/DebugAppWPF/Properties/Resources.Designer.cs create mode 100644 DebugAppWPF/DebugAppWPF/Properties/Resources.resx create mode 100644 DebugAppWPF/DebugAppWPF/Properties/Settings.Designer.cs create mode 100644 DebugAppWPF/DebugAppWPF/Properties/Settings.settings diff --git a/ConsoleApp1/ConsoleApp1/Program.cs b/ConsoleApp1/ConsoleApp1/Program.cs index 3618d35..22a38f0 100644 --- a/ConsoleApp1/ConsoleApp1/Program.cs +++ b/ConsoleApp1/ConsoleApp1/Program.cs @@ -38,7 +38,7 @@ namespace ConsoleApp1 "6A12345678123456", "7A12345678123456", "6F12345678123456", "7E12345678123456", "6G12345678123456", // Австралия, Новая Зеландия // --- РЕДКИЕ / КАЗАХСТАН --- - "KS112345678123456", "KZC12345678123456", "Z1B12345678123456", "Z5S12345678123456", "X7L12345678123456" // Казахстан, Литва, Renault (РФ) + "KS112345678123456", "KZC12345678123456", "Z1B12345678123456", "Z5S12345678123456", "JHMRE485081234567" // Казахстан, Литва, Renault (РФ) }; @@ -71,7 +71,7 @@ namespace ConsoleApp1 "M041MM45", "H042HH46", "O043OO47", "P044PP48", "C045CC49", "T046TT50", "Y047YY51", "X048XX52", "A100AA177", "B200BB197", "E300EE199", "M999MP159" }; - /* + int i = 0; int j = 0; foreach (string v in testVins) @@ -87,9 +87,9 @@ namespace ConsoleApp1 } Console.WriteLine($"Успешно: {i}"); Console.WriteLine($"Не успешно: {j}"); - Console.ReadLine();*/ - + Console.ReadLine(); + /* int i = 0; int j = 0; foreach (string v in testMarks) @@ -123,7 +123,7 @@ namespace ConsoleApp1 Console.WriteLine($"Успешно: {i}"); Console.WriteLine($"Не успешно: {j}"); - Console.ReadLine(); + Console.ReadLine();*/ } } } diff --git a/DebugAppWPF/DebugAppWPF.sln b/DebugAppWPF/DebugAppWPF.sln new file mode 100644 index 0000000..26493de --- /dev/null +++ b/DebugAppWPF/DebugAppWPF.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}") = "DebugAppWPF", "DebugAppWPF\DebugAppWPF.csproj", "{7A6BC548-DBAC-4958-9795-D288317DF885}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7A6BC548-DBAC-4958-9795-D288317DF885}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7A6BC548-DBAC-4958-9795-D288317DF885}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7A6BC548-DBAC-4958-9795-D288317DF885}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7A6BC548-DBAC-4958-9795-D288317DF885}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2ADD1ECC-7EA5-406F-9795-2B97607EC22A} + EndGlobalSection +EndGlobal diff --git a/DebugAppWPF/DebugAppWPF/App.config b/DebugAppWPF/DebugAppWPF/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/DebugAppWPF/DebugAppWPF/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/DebugAppWPF/DebugAppWPF/App.xaml b/DebugAppWPF/DebugAppWPF/App.xaml new file mode 100644 index 0000000..bbcd79f --- /dev/null +++ b/DebugAppWPF/DebugAppWPF/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/DebugAppWPF/DebugAppWPF/App.xaml.cs b/DebugAppWPF/DebugAppWPF/App.xaml.cs new file mode 100644 index 0000000..1b477d6 --- /dev/null +++ b/DebugAppWPF/DebugAppWPF/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 DebugAppWPF +{ + /// + /// Логика взаимодействия для App.xaml + /// + public partial class App : Application + { + } +} diff --git a/DebugAppWPF/DebugAppWPF/DebugAppWPF.csproj b/DebugAppWPF/DebugAppWPF/DebugAppWPF.csproj new file mode 100644 index 0000000..200ed12 --- /dev/null +++ b/DebugAppWPF/DebugAppWPF/DebugAppWPF.csproj @@ -0,0 +1,104 @@ + + + + + Debug + AnyCPU + {7A6BC548-DBAC-4958-9795-D288317DF885} + WinExe + DebugAppWPF + DebugAppWPF + 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 + + + + ..\..\REG_MARK_LIB\REG_MARK_LIB\bin\Debug\REG_MARK_LIB.dll + + + + + + + + + + + 4.0 + + + ..\..\VIN-LIB\VIN-LIB\bin\Release\VIN-LIB.dll + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + \ No newline at end of file diff --git a/DebugAppWPF/DebugAppWPF/MainWindow.xaml b/DebugAppWPF/DebugAppWPF/MainWindow.xaml new file mode 100644 index 0000000..226e2b2 --- /dev/null +++ b/DebugAppWPF/DebugAppWPF/MainWindow.xaml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + +