From 1b0bf89942ba83801c6334c4396bb71cba9c45f0 Mon Sep 17 00:00:00 2001 From: "NBTEMP\\bib" Date: Thu, 25 Jun 2026 13:47:47 +0200 Subject: [PATCH] Projekt erstellung --- Casino/App.xaml | 9 +++++++++ Casino/App.xaml.cs | 14 ++++++++++++++ Casino/AssemblyInfo.cs | 10 ++++++++++ Casino/Casino.csproj | 11 +++++++++++ Casino/Casino.sln | 25 +++++++++++++++++++++++++ Casino/MainWindow.xaml | 12 ++++++++++++ Casino/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ 7 files changed, 105 insertions(+) create mode 100644 Casino/App.xaml create mode 100644 Casino/App.xaml.cs create mode 100644 Casino/AssemblyInfo.cs create mode 100644 Casino/Casino.csproj create mode 100644 Casino/Casino.sln create mode 100644 Casino/MainWindow.xaml create mode 100644 Casino/MainWindow.xaml.cs diff --git a/Casino/App.xaml b/Casino/App.xaml new file mode 100644 index 0000000..89b943a --- /dev/null +++ b/Casino/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Casino/App.xaml.cs b/Casino/App.xaml.cs new file mode 100644 index 0000000..f282f3b --- /dev/null +++ b/Casino/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace Casino +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/Casino/AssemblyInfo.cs b/Casino/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/Casino/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/Casino/Casino.csproj b/Casino/Casino.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/Casino/Casino.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/Casino/Casino.sln b/Casino/Casino.sln new file mode 100644 index 0000000..1b51655 --- /dev/null +++ b/Casino/Casino.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.37301.10 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Casino", "Casino.csproj", "{D0EEE228-D658-43F7-85B7-75CF2A2BEEC4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D0EEE228-D658-43F7-85B7-75CF2A2BEEC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D0EEE228-D658-43F7-85B7-75CF2A2BEEC4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D0EEE228-D658-43F7-85B7-75CF2A2BEEC4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D0EEE228-D658-43F7-85B7-75CF2A2BEEC4}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {ED77751C-4632-419F-9598-D3F6F25F8864} + EndGlobalSection +EndGlobal diff --git a/Casino/MainWindow.xaml b/Casino/MainWindow.xaml new file mode 100644 index 0000000..362881c --- /dev/null +++ b/Casino/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Casino/MainWindow.xaml.cs b/Casino/MainWindow.xaml.cs new file mode 100644 index 0000000..4a97fe3 --- /dev/null +++ b/Casino/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 Casino +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file