From 6b9ca4be28d8bfe4652bd3a070c087b8b9557851 Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Thu, 21 Mar 2024 22:52:44 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lunapark/Lunapark.sln | 25 +++++++++++++++++++++++++ Lunapark/Lunapark/App.xaml | 9 +++++++++ Lunapark/Lunapark/App.xaml.cs | 17 +++++++++++++++++ Lunapark/Lunapark/AssemblyInfo.cs | 10 ++++++++++ Lunapark/Lunapark/Lunapark.csproj | 10 ++++++++++ Lunapark/Lunapark/MainWindow.xaml | 12 ++++++++++++ Lunapark/Lunapark/MainWindow.xaml.cs | 28 ++++++++++++++++++++++++++++ 7 files changed, 111 insertions(+) create mode 100644 Lunapark/Lunapark.sln create mode 100644 Lunapark/Lunapark/App.xaml create mode 100644 Lunapark/Lunapark/App.xaml.cs create mode 100644 Lunapark/Lunapark/AssemblyInfo.cs create mode 100644 Lunapark/Lunapark/Lunapark.csproj create mode 100644 Lunapark/Lunapark/MainWindow.xaml create mode 100644 Lunapark/Lunapark/MainWindow.xaml.cs diff --git a/Lunapark/Lunapark.sln b/Lunapark/Lunapark.sln new file mode 100644 index 0000000..e153f0e --- /dev/null +++ b/Lunapark/Lunapark.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33815.320 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lunapark", "Lunapark\Lunapark.csproj", "{6EC83A1C-80ED-4A78-AE58-C61F9067AA74}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6EC83A1C-80ED-4A78-AE58-C61F9067AA74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6EC83A1C-80ED-4A78-AE58-C61F9067AA74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6EC83A1C-80ED-4A78-AE58-C61F9067AA74}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6EC83A1C-80ED-4A78-AE58-C61F9067AA74}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C260505F-2259-455D-8439-6C75B65286AD} + EndGlobalSection +EndGlobal diff --git a/Lunapark/Lunapark/App.xaml b/Lunapark/Lunapark/App.xaml new file mode 100644 index 0000000..0f8ffd5 --- /dev/null +++ b/Lunapark/Lunapark/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Lunapark/Lunapark/App.xaml.cs b/Lunapark/Lunapark/App.xaml.cs new file mode 100644 index 0000000..f7f5f45 --- /dev/null +++ b/Lunapark/Lunapark/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 Lunapark +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Lunapark/Lunapark/AssemblyInfo.cs b/Lunapark/Lunapark/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/Lunapark/Lunapark/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/Lunapark/Lunapark/Lunapark.csproj b/Lunapark/Lunapark/Lunapark.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/Lunapark/Lunapark/Lunapark.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/Lunapark/Lunapark/MainWindow.xaml b/Lunapark/Lunapark/MainWindow.xaml new file mode 100644 index 0000000..0f49b6b --- /dev/null +++ b/Lunapark/Lunapark/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Lunapark/Lunapark/MainWindow.xaml.cs b/Lunapark/Lunapark/MainWindow.xaml.cs new file mode 100644 index 0000000..d988544 --- /dev/null +++ b/Lunapark/Lunapark/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +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.Navigation; +using System.Windows.Shapes; + +namespace Lunapark +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +}