148 lines
6.2 KiB
XML
148 lines
6.2 KiB
XML
<Window
|
|
x:Class="BeWo.View.TwoFactorAuthMessageDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:converter="clr-namespace:BeWo.Converter"
|
|
Title="BeWoPlaner"
|
|
Width="500"
|
|
Height="400"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None">
|
|
<Window.Resources>
|
|
<converter:BoolVisibilityConverter x:Key="BoolVisibilityConverter" />
|
|
</Window.Resources>
|
|
<Grid Margin="0,0,0,0" Background="{x:Null}">
|
|
<Border
|
|
Padding="5,5,5,5"
|
|
Background="{DynamicResource LoginBackgroundColor}"
|
|
BorderBrush="Black"
|
|
BorderThickness="1">
|
|
<Grid Opacity="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="80" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Image
|
|
Grid.Row="0"
|
|
Height="45"
|
|
Margin="7,7,0,0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
Source="..\Ressources\Icons\bewoplaner_logo_small.png" />
|
|
<Grid
|
|
x:Name="rootGrid"
|
|
Grid.Row="1"
|
|
Margin="0,10,0,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<TextBox
|
|
x:Name="txtMessage"
|
|
Margin="3"
|
|
Background="Transparent"
|
|
BorderThickness="0"
|
|
FontSize="14"
|
|
IsReadOnly="True"
|
|
TextWrapping="Wrap">
|
|
Wir haben Ihnen eine Mail an die hinterlegte Adresse geschickt. Bitte geben Sie den Code ein um sich anzumelden.
|
|
</TextBox>
|
|
|
|
<Grid
|
|
Grid.Row="1"
|
|
Margin="10"
|
|
HorizontalAlignment="Center">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBox
|
|
x:Name="textbox"
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
Width="185"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Center"
|
|
HorizontalContentAlignment="Center"
|
|
VerticalContentAlignment="Center"
|
|
FontSize="20" />
|
|
</Grid>
|
|
<!--<Grid >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" ></RowDefinition>
|
|
<RowDefinition Height="Auto" ></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<TextBox Background="Transparent"
|
|
BorderThickness="0" IsReadOnly="True"
|
|
TextWrapping="Wrap" Margin="3" FontSize="14">
|
|
Am 17./18.11.2017 wird ein BeWoPlaner-Update erscheinen, welches auf die Microsoft Komponente .NET 4.5 angewiesen ist. Bitte installieren Sie .NET 4.5. Sobald Sie die Installation durchgeführt haben, startet der BeWoPlaner ohne diese Meldung.
|
|
Sie finden die Installation unter folgendem Link:
|
|
</TextBox>
|
|
|
|
<TextBlock Grid.Row="1" Margin="3" FontSize="14">
|
|
<Hyperlink NavigateUri="https://www.microsoft.com/de-de/download/details.aspx?id=42642" Command="{Binding Test}">
|
|
https://www.microsoft.com/de-de/download/details.aspx?id=42642
|
|
</Hyperlink>
|
|
</TextBlock>
|
|
</Grid>-->
|
|
<!--<Button Grid.Row="2" Grid.Column ="2" Width="100" Margin="3" IsCancel="True" IsEnabled="False" HorizontalAlignment="Right">Abbrechen</Button>-->
|
|
</Grid>
|
|
</Grid>
|
|
</Border>
|
|
<Line
|
|
Grid.ColumnSpan="4"
|
|
Stroke="#FFADADAD"
|
|
StrokeThickness="1"
|
|
X1="14"
|
|
X2="486"
|
|
Y1="70"
|
|
Y2="70" />
|
|
<Line
|
|
x:Name="linkLine"
|
|
Margin="0,30,0,-30"
|
|
Stroke="#FFADADAD"
|
|
StrokeThickness="1"
|
|
X1="14"
|
|
X2="486"
|
|
Y1="320"
|
|
Y2="320" />
|
|
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
|
<Button
|
|
x:Name="OkayButton"
|
|
Width="120"
|
|
Margin="3,3,3,10"
|
|
VerticalAlignment="Bottom"
|
|
Click="OkayButton_OnClick">
|
|
Anmelden
|
|
</Button>
|
|
<Button
|
|
x:Name="CancelButton"
|
|
Width="120"
|
|
Margin="3,3,15,10"
|
|
VerticalAlignment="Bottom"
|
|
Click="CancelButton_OnClick"
|
|
IsDefault="True">
|
|
Abbrechen
|
|
</Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|