Merge branch 'main' of https://git.bib.de/PBG2H25AGE/GAMBLING-WIR-MACHEN-ALLE-ARM
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:local="clr-namespace:Casino"
|
xmlns:local="clr-namespace:Casino"
|
||||||
StartupUri="MainWindow.xaml">
|
StartupUri="Login.xaml">
|
||||||
<Application.Resources>
|
<Application.Resources>
|
||||||
|
|
||||||
</Application.Resources>
|
</Application.Resources>
|
||||||
|
|||||||
+22
-6
@@ -5,7 +5,20 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:local="clr-namespace:Casino"
|
xmlns:local="clr-namespace:Casino"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
Title="Login" Height="450" Width="300">
|
Title="Login" Height="450" Width="300"
|
||||||
|
WindowStyle="None"
|
||||||
|
ResizeMode="NoResize"
|
||||||
|
WindowStartupLocation="CenterScreen"
|
||||||
|
Background="Transparent"
|
||||||
|
AllowsTransparency="True"
|
||||||
|
MouseDown="Window_MouseDown">
|
||||||
|
|
||||||
|
<Border CornerRadius="50"
|
||||||
|
Background="#590D00"
|
||||||
|
BorderBrush="Gold"
|
||||||
|
BorderThickness="5">
|
||||||
|
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="0*"/>
|
<ColumnDefinition Width="0*"/>
|
||||||
@@ -13,12 +26,12 @@
|
|||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<StackPanel Margin="15" Grid.ColumnSpan="2">
|
<StackPanel Margin="15" Grid.ColumnSpan="2">
|
||||||
<Label Content="Name" Margin="0,30,0,0"/>
|
<Label Content="Name" Margin="0,30,0,0" FontSize="18" FontWeight="SemiBold" FontFamily="Palatino Linotype" Foreground="DarkGray"/>
|
||||||
<TextBox x:Name="TxtName" Margin="0,0,0,30"/>
|
<TextBox x:Name="TxtName" Margin="0,0,0,30" Background="#BD9208"/>
|
||||||
<Label Content="Passwort"/>
|
<Label Content="Passwort" FontSize="18" FontWeight="SemiBold" FontFamily="Palatino Linotype" Foreground="DarkGray"/>
|
||||||
<TextBox x:Name="TxtPasswort" Margin="0,0,0,10"/>
|
<TextBox x:Name="TxtPasswort" Margin="0,0,0,10" Background="#BD9208" />
|
||||||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
||||||
<Button Content="Anmelden" Width="80" Click="Anmelden_Click"/>
|
<Button Content="Anmelden" Width="80" Click="Anmelden_Click" Background="#BD9208" FontFamily="Palatino Linotype" FontWeight="SemiBold"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<MediaElement Name="player"
|
<MediaElement Name="player"
|
||||||
LoadedBehavior="Manual"
|
LoadedBehavior="Manual"
|
||||||
@@ -26,4 +39,7 @@
|
|||||||
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
|
||||||
</Window>
|
</Window>
|
||||||
|
|||||||
@@ -56,5 +56,10 @@ namespace Casino
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Window_MouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.LeftButton == MouseButtonState.Pressed)
|
||||||
|
DragMove();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
<Window x:Class="Casino.Slots"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:local="clr-namespace:Casino"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
Title="Slots" Height="1080" Width="1980">
|
||||||
|
<Grid>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="100"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="280"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="20"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="280"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="20"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="280"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="20"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="280"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="20"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="280"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="20"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="280"></ColumnDefinition>
|
||||||
|
<ColumnDefinition Width="100"></ColumnDefinition>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="70"></RowDefinition>
|
||||||
|
<RowDefinition Height="270"></RowDefinition>
|
||||||
|
<RowDefinition Height="270"></RowDefinition>
|
||||||
|
<RowDefinition Height="270"></RowDefinition>
|
||||||
|
<RowDefinition Height="200"></RowDefinition>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
||||||
@@ -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
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaktionslogik für Slots.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class Slots : Window
|
||||||
|
{
|
||||||
|
public Slots()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user