72 lines
2.7 KiB
XML
72 lines
2.7 KiB
XML
<Window
|
|
x:Class="BeWo.PwVergessenView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:markup="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
Title="PwVergessenView"
|
|
Width="322"
|
|
Height="135"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None">
|
|
<Grid>
|
|
<GroupBox
|
|
Header="Passwort anfordern"
|
|
MouseLeftButtonDown="RootGroupBox_OnMouseLeftButtonDown"
|
|
Style="{DynamicResource MainContentGroupBoxWithoutMaximizeBtnStyle}">
|
|
<Grid Background="{StaticResource ObjectEditBackgroundBrush}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
Height="20"
|
|
Margin="3,8,3,3"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Foreground="Red" />
|
|
<Label
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
Margin="3"
|
|
Content="{markup:Translate Benutzername}" />
|
|
<TextBox
|
|
x:Name="BenutzernamenTextBox"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Margin="3"
|
|
MaxLines="1" />
|
|
<StackPanel
|
|
Grid.Row="2"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
HorizontalAlignment="Stretch"
|
|
Orientation="Horizontal">
|
|
<Button
|
|
Width="150"
|
|
Margin="3"
|
|
VerticalContentAlignment="Center"
|
|
Click="AnfordernClick"
|
|
Content="Neues Passwort anfordern"
|
|
IsDefault="True" />
|
|
<Button
|
|
Width="150"
|
|
Margin="3"
|
|
Command="Close"
|
|
Content="Abbrechen" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</Window>
|