Files
WIR-MACHEN-ALLE-ARM/Casino/EditUserView.xaml
T
2026-09-14 22:31:22 +02:00

114 lines
3.0 KiB
XML

<Window x:Class="Casino.EditUserView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Benutzer bearbeiten"
Height="550"
Width="500"
WindowStartupLocation="CenterScreen">
<!-- Lenard Gerdes -->
<Grid Margin="25">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="Benutzer bearbeiten"
FontSize="28"
FontWeight="Bold"
HorizontalAlignment="Center"
Margin="0,0,0,25"/>
<StackPanel Grid.Row="1"
Margin="0,5">
<TextBlock Text="Name"
FontWeight="Bold"/>
<TextBox x:Name="TxtName"
Height="35"/>
</StackPanel>
<StackPanel Grid.Row="2"
Margin="0,5">
<TextBlock Text="Alter"
FontWeight="Bold"/>
<TextBox x:Name="TxtAge"
Height="35"/>
</StackPanel>
<StackPanel Grid.Row="3"
Margin="0,5">
<TextBlock Text="Neues Passwort"
FontWeight="Bold"/>
<PasswordBox x:Name="TxtPasswort"
Height="35"/>
<TextBlock Text="Leer lassen = Passwort nicht ändern"
FontSize="12"
Foreground="Gray"/>
</StackPanel>
<StackPanel Grid.Row="4"
Margin="0,5">
<TextBlock Text="Geld"
FontWeight="Bold"/>
<TextBox x:Name="TxtGeld"
Height="35"/>
</StackPanel>
<StackPanel Grid.Row="5"
Margin="0,5">
<TextBlock Text="Rolle"
FontWeight="Bold"/>
<ComboBox x:Name="CmbRolle"
Height="35">
<ComboBoxItem Content="User"/>
<ComboBoxItem Content="Admin"/>
</ComboBox>
</StackPanel>
<StackPanel Grid.Row="6"
Orientation="Horizontal"
HorizontalAlignment="Center"
VerticalAlignment="Bottom"
Margin="0,25,0,0">
<Button Content="Speichern"
Width="140"
Height="40"
Margin="10"
Click="BtnSpeichern_Click"/>
<Button Content="Abbrechen"
Width="140"
Height="40"
Margin="10"
Click="BtnAbbrechen_Click"/>
</StackPanel>
</Grid>
</Window>