Sicherung

This commit is contained in:
Maier Stephan SI
2023-04-17 07:07:49 +02:00
parent f3f89b94f5
commit 1c68b8f401
1307 changed files with 7918 additions and 82491 deletions

View File

@@ -0,0 +1,48 @@
<Window x:Class="FSI.BT.Tools.RadialMenu.UserInterface.FrmAdmin"
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:FSI.BT.Tools.RadialMenu.UserInterface"
mc:Ignorable="d"
Title="Admin-/Benutzerverwaltung"
SizeToContent="WidthAndHeight"
Height="Auto"
MinWidth="800"
Loaded="Window_Loaded">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="200" />
<RowDefinition Height="Auto" />
<RowDefinition Height="200" />
<RowDefinition Height="30" />
</Grid.RowDefinitions>
<Label Content="Benutzer:" />
<TextBox x:Name="tbUsers"
Grid.Row="1"
AcceptsReturn="true"
VerticalScrollBarVisibility="Visible"
HorizontalScrollBarVisibility="Visible" />
<Label Grid.Row="2"
Content="Admins:" />
<TextBox x:Name="tbAdmins"
Grid.Row="3"
AcceptsReturn="true"
VerticalScrollBarVisibility="Visible"
HorizontalScrollBarVisibility="Visible" />
<StackPanel Grid.Row="4" Orientation="Horizontal">
<Button x:Name="btnOk"
Margin="5 5 5 5"
Content="Speichern"
Click="btnOk_Click" />
<Button x:Name="btnCancel"
Margin="5 5 5 5 "
Content="Abbruch"
Click="btnCancel_Click" />
</StackPanel>
</Grid>
</Window>