From 415bb10663d5dffa975790ad62e3ab2f25049a8c Mon Sep 17 00:00:00 2001 From: PBT3H24AFA Date: Wed, 4 Jun 2025 12:56:46 +0200 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lotto_WPF.sln | 25 +++++++++++++++++++++++++ Lotto_WPF/App.xaml | 9 +++++++++ Lotto_WPF/App.xaml.cs | 14 ++++++++++++++ Lotto_WPF/AssemblyInfo.cs | 10 ++++++++++ Lotto_WPF/Lotto_WPF.csproj | 11 +++++++++++ Lotto_WPF/MainWindow.xaml | 12 ++++++++++++ Lotto_WPF/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ 7 files changed, 105 insertions(+) create mode 100644 Lotto_WPF.sln create mode 100644 Lotto_WPF/App.xaml create mode 100644 Lotto_WPF/App.xaml.cs create mode 100644 Lotto_WPF/AssemblyInfo.cs create mode 100644 Lotto_WPF/Lotto_WPF.csproj create mode 100644 Lotto_WPF/MainWindow.xaml create mode 100644 Lotto_WPF/MainWindow.xaml.cs diff --git a/Lotto_WPF.sln b/Lotto_WPF.sln new file mode 100644 index 0000000..a02a588 --- /dev/null +++ b/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", "{11508812-14FF-4C7C-A0C8-D446CE063F66}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {11508812-14FF-4C7C-A0C8-D446CE063F66}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {11508812-14FF-4C7C-A0C8-D446CE063F66}.Debug|Any CPU.Build.0 = Debug|Any CPU + {11508812-14FF-4C7C-A0C8-D446CE063F66}.Release|Any CPU.ActiveCfg = Release|Any CPU + {11508812-14FF-4C7C-A0C8-D446CE063F66}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {49FFDDEF-C3C0-40D5-A88F-39460E29B7AC} + EndGlobalSection +EndGlobal diff --git a/Lotto_WPF/App.xaml b/Lotto_WPF/App.xaml new file mode 100644 index 0000000..d950d6f --- /dev/null +++ b/Lotto_WPF/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Lotto_WPF/App.xaml.cs b/Lotto_WPF/App.xaml.cs new file mode 100644 index 0000000..eec0ed6 --- /dev/null +++ b/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/AssemblyInfo.cs b/Lotto_WPF/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/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.csproj b/Lotto_WPF/Lotto_WPF.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/Lotto_WPF/Lotto_WPF.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/Lotto_WPF/MainWindow.xaml b/Lotto_WPF/MainWindow.xaml new file mode 100644 index 0000000..6322507 --- /dev/null +++ b/Lotto_WPF/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Lotto_WPF/MainWindow.xaml.cs b/Lotto_WPF/MainWindow.xaml.cs new file mode 100644 index 0000000..1858123 --- /dev/null +++ b/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