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(); + } + } +}