2025-04-02 16:01:21 +02:00
|
|
|
<Page
|
|
|
|
|
x:Class="BeWo.LockedPage"
|
|
|
|
|
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:markup="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
Title="LockedPage"
|
|
|
|
|
Width="Auto"
|
|
|
|
|
Background="{StaticResource LoginBackground}"
|
|
|
|
|
Focusable="True"
|
|
|
|
|
SnapsToDevicePixels="False"
|
|
|
|
|
mc:Ignorable="d">
|
2016-06-27 01:45:38 +02:00
|
|
|
<Page.Resources>
|
|
|
|
|
<Storyboard x:Key="OnLoaded1">
|
2025-04-02 16:01:21 +02:00
|
|
|
<DoubleAnimationUsingKeyFrames
|
|
|
|
|
BeginTime="00:00:00"
|
|
|
|
|
Storyboard.TargetName="GridLogin"
|
|
|
|
|
Storyboard.TargetProperty="(UIElement.Opacity)">
|
2016-06-27 01:45:38 +02:00
|
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0" />
|
|
|
|
|
<SplineDoubleKeyFrame KeyTime="00:00:01" Value="1" />
|
|
|
|
|
</DoubleAnimationUsingKeyFrames>
|
|
|
|
|
</Storyboard>
|
|
|
|
|
</Page.Resources>
|
|
|
|
|
<Page.Triggers>
|
|
|
|
|
<EventTrigger RoutedEvent="FrameworkElement.Loaded" SourceName="GridLogin">
|
|
|
|
|
<BeginStoryboard Storyboard="{StaticResource OnLoaded1}" />
|
|
|
|
|
</EventTrigger>
|
|
|
|
|
</Page.Triggers>
|
|
|
|
|
<Grid>
|
|
|
|
|
<StackPanel HorizontalAlignment="Center">
|
2025-04-02 16:01:21 +02:00
|
|
|
<Grid
|
|
|
|
|
x:Name="GridLogin"
|
|
|
|
|
Width="600"
|
|
|
|
|
Height="400"
|
|
|
|
|
Margin="0,0,0,0"
|
|
|
|
|
Background="{x:Null}"
|
|
|
|
|
RenderTransformOrigin="0.5,0.5"
|
|
|
|
|
Visibility="Visible">
|
2016-06-27 01:45:38 +02:00
|
|
|
<Grid.RenderTransform>
|
|
|
|
|
<TransformGroup>
|
|
|
|
|
<ScaleTransform ScaleX="1" ScaleY="1" />
|
|
|
|
|
<SkewTransform AngleX="0" AngleY="0" />
|
|
|
|
|
<RotateTransform Angle="0" />
|
|
|
|
|
<TranslateTransform X="0" Y="0" />
|
|
|
|
|
</TransformGroup>
|
|
|
|
|
</Grid.RenderTransform>
|
2025-04-02 16:01:21 +02:00
|
|
|
<Border
|
|
|
|
|
Padding="5,5,5,5"
|
|
|
|
|
Background="{DynamicResource LoginBackgroundColor}"
|
|
|
|
|
BorderBrush="#FF606060"
|
|
|
|
|
BorderThickness="2,2,2,2"
|
|
|
|
|
CornerRadius="7,7,7,7">
|
2016-06-27 01:45:38 +02:00
|
|
|
<Grid Opacity="1">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="100" />
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition Width="170" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
</Grid.RowDefinitions>
|
2025-04-02 16:01:21 +02:00
|
|
|
<Image
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Grid.ColumnSpan="4"
|
|
|
|
|
Height="45"
|
|
|
|
|
Margin="7,7,0,0"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
Source="Ressources\Icons\bewoplaner_logo_small.png" />
|
|
|
|
|
<Label
|
|
|
|
|
x:Name="LblVersion"
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
Grid.ColumnSpan="4"
|
|
|
|
|
Margin="5,7,3,0"
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
Content="Version x.x.x"
|
|
|
|
|
FontSize="10"
|
|
|
|
|
Foreground="#FF818181" />
|
|
|
|
|
<StackPanel
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Grid.ColumnSpan="2"
|
|
|
|
|
MaxWidth="330"
|
|
|
|
|
Margin="0,100,0,0">
|
|
|
|
|
<Label
|
|
|
|
|
x:Name="lblGesperrt"
|
|
|
|
|
Margin="0,30,0,0"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
Content="Gesperrt"
|
|
|
|
|
FontSize="12"
|
|
|
|
|
FontWeight="Bold"
|
|
|
|
|
Foreground="#FF000000" />
|
|
|
|
|
<TextBlock
|
|
|
|
|
FontSize="12"
|
|
|
|
|
Foreground="#FF000000"
|
|
|
|
|
Text="Bitte melden Sie sich an, um den BeWoPlaner zu entsperren."
|
|
|
|
|
TextWrapping="Wrap" />
|
2016-06-27 01:45:38 +02:00
|
|
|
</StackPanel>
|
2025-04-02 16:01:21 +02:00
|
|
|
<Label
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Background="#00000000"
|
|
|
|
|
Content="{markup:Translate Benutzername:}"
|
|
|
|
|
Foreground="#FF000000" />
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="2"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Background="#00000000"
|
|
|
|
|
Content="Passwort:"
|
|
|
|
|
Foreground="#FF000000" />
|
|
|
|
|
<TextBox
|
|
|
|
|
x:Name="TextBoxUsername"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="2"
|
|
|
|
|
Height="24"
|
|
|
|
|
Margin="10,10,20,10"
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
SnapsToDevicePixels="True"
|
|
|
|
|
TabIndex="0"
|
|
|
|
|
Text="" />
|
|
|
|
|
<PasswordBox
|
|
|
|
|
x:Name="PasswordBoxPassword"
|
|
|
|
|
Grid.Row="2"
|
|
|
|
|
Grid.Column="2"
|
|
|
|
|
Height="24"
|
|
|
|
|
Margin="10,0,20,0"
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
Password=""
|
|
|
|
|
TabIndex="1" />
|
|
|
|
|
<Button
|
|
|
|
|
x:Name="ButtonLogin"
|
|
|
|
|
Grid.Row="3"
|
|
|
|
|
Grid.Column="2"
|
|
|
|
|
Height="30"
|
|
|
|
|
Margin="10,30,20,50"
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
Content="Anmelden"
|
|
|
|
|
Foreground="White"
|
|
|
|
|
IsDefault="True"
|
|
|
|
|
TabIndex="2" />
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="3"
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
Grid.ColumnSpan="3"
|
|
|
|
|
Margin="5,0,0,3"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
|
Content="Copyright 2010 | ownSoft GmbH"
|
|
|
|
|
FontSize="10"
|
|
|
|
|
Foreground="#FF818181" />
|
|
|
|
|
<TextBlock
|
|
|
|
|
Grid.Row="3"
|
|
|
|
|
Grid.Column="3"
|
|
|
|
|
Margin="0,0,12,10"
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
|
FontSize="10">
|
|
|
|
|
<Hyperlink
|
|
|
|
|
Foreground="#FF818181"
|
|
|
|
|
NavigateUri="https://www.ownsoft.de/"
|
|
|
|
|
TargetName="newWindow">
|
|
|
|
|
www.ownsoft.de
|
|
|
|
|
</Hyperlink>
|
2016-06-27 01:45:38 +02:00
|
|
|
</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
2025-04-02 16:01:21 +02:00
|
|
|
<Line
|
|
|
|
|
Grid.ColumnSpan="4"
|
|
|
|
|
Stroke="#FFADADAD"
|
|
|
|
|
StrokeThickness="1"
|
|
|
|
|
X1="14"
|
|
|
|
|
X2="585"
|
|
|
|
|
Y1="70"
|
|
|
|
|
Y2="70" />
|
|
|
|
|
<Line
|
|
|
|
|
Grid.ColumnSpan="4"
|
|
|
|
|
Stroke="#FFADADAD"
|
|
|
|
|
StrokeThickness="1"
|
|
|
|
|
X1="14"
|
|
|
|
|
X2="585"
|
|
|
|
|
Y1="370"
|
|
|
|
|
Y2="370" />
|
2016-06-27 01:45:38 +02:00
|
|
|
</Grid>
|
2025-04-02 16:01:21 +02:00
|
|
|
<Rectangle
|
|
|
|
|
Width="600"
|
|
|
|
|
Height="400"
|
|
|
|
|
RenderTransformOrigin="0.5,0.5">
|
2016-06-27 01:45:38 +02:00
|
|
|
<Rectangle.OpacityMask>
|
2025-04-02 16:01:21 +02:00
|
|
|
<LinearGradientBrush StartPoint="0.5,0.418" EndPoint="0.5,1">
|
|
|
|
|
<GradientStop Offset="0" Color="#00000000" />
|
|
|
|
|
<GradientStop Offset="1" Color="#4CFFFFFF" />
|
2016-06-27 01:45:38 +02:00
|
|
|
</LinearGradientBrush>
|
|
|
|
|
</Rectangle.OpacityMask>
|
|
|
|
|
<Rectangle.RenderTransform>
|
|
|
|
|
<TransformGroup>
|
|
|
|
|
<ScaleTransform ScaleX="1" ScaleY="-1" />
|
|
|
|
|
<SkewTransform AngleX="0" AngleY="0" />
|
|
|
|
|
<RotateTransform Angle="0" />
|
|
|
|
|
<TranslateTransform X="0" Y="0" />
|
|
|
|
|
</TransformGroup>
|
|
|
|
|
</Rectangle.RenderTransform>
|
|
|
|
|
<Rectangle.Fill>
|
|
|
|
|
<VisualBrush Visual="{Binding ElementName=GridLogin}" />
|
|
|
|
|
</Rectangle.Fill>
|
|
|
|
|
</Rectangle>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Page>
|