90 lines
3.3 KiB
XML
90 lines
3.3 KiB
XML
<Window
|
|
x:Class="BeWo.ConfirmDemoDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="BeWoPlaner"
|
|
Width="360"
|
|
Height="240"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None">
|
|
|
|
<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 Grid.Row="1" Margin="0,10,0,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock
|
|
Margin="3"
|
|
FontSize="14"
|
|
TextWrapping="Wrap">
|
|
WICHTIG! Bitte tragen Sie keine echten Daten bei Ihren Tests ein, da es sich um einen öffentlichen Testzugang handelt, auf den jeder Zugriff hat!
|
|
</TextBlock>
|
|
<Button
|
|
x:Name="CountButton"
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
Width="120"
|
|
Margin="3,25,3,3"
|
|
HorizontalAlignment="Right"
|
|
Click="ButtonBase_OnClick"
|
|
IsDefault="True">
|
|
OK
|
|
</Button>
|
|
<!--<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="585"
|
|
Y1="70"
|
|
Y2="70" />
|
|
<Line
|
|
x:Name="linkLine"
|
|
Margin="0,30,0,-30"
|
|
Stroke="#FFADADAD"
|
|
StrokeThickness="1"
|
|
X1="14"
|
|
X2="585"
|
|
Y1="340"
|
|
Y2="340" />
|
|
</Grid>
|
|
|
|
|
|
|
|
</Window>
|