From a8ed33e44dbe291f9f56b87f3e3fa441c8eafeb1 Mon Sep 17 00:00:00 2001 From: PBT3H24AFA Date: Wed, 4 Jun 2025 13:09:07 +0200 Subject: [PATCH] Lotto_Projekt pushen --- Lotto_Wpf/Lotto_Wpf.sln | 25 +++++++++++++++++++++++++ Lotto_Wpf/Lotto_Wpf/App.xaml | 9 +++++++++ Lotto_Wpf/Lotto_Wpf/App.xaml.cs | 14 ++++++++++++++ Lotto_Wpf/Lotto_Wpf/AssemblyInfo.cs | 10 ++++++++++ Lotto_Wpf/Lotto_Wpf/Lotto_Wpf.csproj | 11 +++++++++++ Lotto_Wpf/Lotto_Wpf/MainWindow.xaml | 12 ++++++++++++ Lotto_Wpf/Lotto_Wpf/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ 7 files changed, 105 insertions(+) create mode 100644 Lotto_Wpf/Lotto_Wpf.sln create mode 100644 Lotto_Wpf/Lotto_Wpf/App.xaml create mode 100644 Lotto_Wpf/Lotto_Wpf/App.xaml.cs create mode 100644 Lotto_Wpf/Lotto_Wpf/AssemblyInfo.cs create mode 100644 Lotto_Wpf/Lotto_Wpf/Lotto_Wpf.csproj create mode 100644 Lotto_Wpf/Lotto_Wpf/MainWindow.xaml create mode 100644 Lotto_Wpf/Lotto_Wpf/MainWindow.xaml.cs diff --git a/Lotto_Wpf/Lotto_Wpf.sln b/Lotto_Wpf/Lotto_Wpf.sln new file mode 100644 index 0000000..4ae4b5d --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.13.35931.197 d17.13 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lotto_Wpf", "Lotto_Wpf\Lotto_Wpf.csproj", "{E54485DB-84A3-45CA-98CB-C10347CA8CC4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E54485DB-84A3-45CA-98CB-C10347CA8CC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E54485DB-84A3-45CA-98CB-C10347CA8CC4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E54485DB-84A3-45CA-98CB-C10347CA8CC4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E54485DB-84A3-45CA-98CB-C10347CA8CC4}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AB474776-D9C7-4AE0-9D9B-1DC4F8AB430D} + EndGlobalSection +EndGlobal diff --git a/Lotto_Wpf/Lotto_Wpf/App.xaml b/Lotto_Wpf/Lotto_Wpf/App.xaml new file mode 100644 index 0000000..5a132e5 --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Lotto_Wpf/Lotto_Wpf/App.xaml.cs b/Lotto_Wpf/Lotto_Wpf/App.xaml.cs new file mode 100644 index 0000000..36a327b --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace Lotto_Wpf +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/Lotto_Wpf/Lotto_Wpf/AssemblyInfo.cs b/Lotto_Wpf/Lotto_Wpf/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf/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/Lotto_Wpf/Lotto_Wpf/Lotto_Wpf.csproj b/Lotto_Wpf/Lotto_Wpf/Lotto_Wpf.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf/Lotto_Wpf.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/Lotto_Wpf/Lotto_Wpf/MainWindow.xaml b/Lotto_Wpf/Lotto_Wpf/MainWindow.xaml new file mode 100644 index 0000000..7522fdb --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Lotto_Wpf/Lotto_Wpf/MainWindow.xaml.cs b/Lotto_Wpf/Lotto_Wpf/MainWindow.xaml.cs new file mode 100644 index 0000000..bc5c2a3 --- /dev/null +++ b/Lotto_Wpf/Lotto_Wpf/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 Lotto_Wpf +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file