Files
BeWoPlaner/BeWo/ConfirmDemoDialog.xaml

90 lines
3.3 KiB
Plaintext
Raw Permalink Normal View History

2025-04-08 10:22:22 +02:00
<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">
2016-06-27 01:45:38 +02:00
<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>
2025-04-08 10:22:22 +02:00
<Image
Grid.Row="0"
Height="45"
Margin="7,7,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Source="Ressources\Icons\bewoplaner_logo_small.png" />
2016-06-27 01:45:38 +02:00
<Grid Grid.Row="1" Margin="0,10,0,0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
2025-04-08 10:22:22 +02:00
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
2016-06-27 01:45:38 +02:00
</Grid.RowDefinitions>
2020-11-10 02:25:15 +01:00
2025-04-08 10:22:22 +02:00
<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>
2016-06-27 01:45:38 +02:00
<!--<Button Grid.Row="2" Grid.Column ="2" Width="100" Margin="3" IsCancel="True" IsEnabled="False" HorizontalAlignment="Right">Abbrechen</Button>-->
</Grid>
</Grid>
</Border>
2020-11-10 02:25:15 +01:00
2025-04-08 10:22:22 +02:00
<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" />
2016-06-27 01:45:38 +02:00
</Grid>
2025-04-08 10:22:22 +02:00
2016-06-27 01:45:38 +02:00
</Window>