commit 7d80031f468f5316b85787544a54b75d4abdfcbd Author: Bogdan Date: Mon Apr 14 10:58:43 2025 +0300 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5003052 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vs +bin +obj \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..1272449 --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..c6ceb70 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace TestOP +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..d9a1bde --- /dev/null +++ b/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/GitIgnore.txt b/GitIgnore.txt new file mode 100644 index 0000000..e69de29 diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..c56a973 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs new file mode 100644 index 0000000..f83037d --- /dev/null +++ b/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System.Text; +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 TestOP +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/TestOP.csproj b/TestOP.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/TestOP.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/TestOP.csproj.user b/TestOP.csproj.user new file mode 100644 index 0000000..644b0a6 --- /dev/null +++ b/TestOP.csproj.user @@ -0,0 +1,14 @@ + + + + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/TestOP.sln b/TestOP.sln new file mode 100644 index 0000000..fa28710 --- /dev/null +++ b/TestOP.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34607.119 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestOP", "TestOP.csproj", "{B022994C-9E5F-44D5-A0B5-26A1B8DF9A65}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B022994C-9E5F-44D5-A0B5-26A1B8DF9A65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B022994C-9E5F-44D5-A0B5-26A1B8DF9A65}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B022994C-9E5F-44D5-A0B5-26A1B8DF9A65}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B022994C-9E5F-44D5-A0B5-26A1B8DF9A65}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8735F86C-7520-47A7-A8AD-C6DA3E750384} + EndGlobalSection +EndGlobal