From c63c2f52a7adc19a7f64ebb082b88987e2fdb75d Mon Sep 17 00:00:00 2001 From: "NBTEMP\\bib" Date: Thu, 20 Aug 2026 17:09:21 +0200 Subject: [PATCH] =?UTF-8?q?Layout=20f=C3=BCr=20slots=20erstellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Casino/Slots.xaml | 33 +++++++++++++++++++++++++++++++++ Casino/Slots.xaml.cs | 27 +++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 Casino/Slots.xaml create mode 100644 Casino/Slots.xaml.cs diff --git a/Casino/Slots.xaml b/Casino/Slots.xaml new file mode 100644 index 0000000..8592401 --- /dev/null +++ b/Casino/Slots.xaml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Casino/Slots.xaml.cs b/Casino/Slots.xaml.cs new file mode 100644 index 0000000..d117545 --- /dev/null +++ b/Casino/Slots.xaml.cs @@ -0,0 +1,27 @@ +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.Shapes; + +namespace Casino +{ + /// + /// Interaktionslogik für Slots.xaml + /// + public partial class Slots : Window + { + public Slots() + { + InitializeComponent(); + } + } +}