eDosStationFull/eDosStationCore/InstMessage.xaml

40 lines
2.2 KiB
Text
Raw Permalink Normal View History

2026-08-18 12:15:26 +02:00
<Window x:Class="eDosStation.InstMessage"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:local="clr-namespace:eDosStation"
mc:Ignorable="d"
Title="InstMessage" Height="700" Width="900"
Topmost="True"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
Closing="Window_Closing" Loaded="Window_Loaded" >
<DockPanel >
<StackPanel DockPanel.Dock="Bottom">
<telerik:RadButton Content="Close" Name="bMsg" Click="BMsg_Click" Height="50" Margin="0,20,0,20" Style="{StaticResource OkCancelButton}"/>
<ProgressBar x:Name="pUserSeconds" Background="Blue" Value="5" Maximum="10" Tag="AA" Height="10" MinWidth="150" >
<ProgressBar.Effect>
<DropShadowEffect/>
</ProgressBar.Effect>
</ProgressBar>
</StackPanel>
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" MinWidth="600" MinHeight="600" >
<Border Background="{StaticResource sckbLB}" CornerRadius="10" Margin="0,0,0,30" >
<StackPanel Orientation="Horizontal" >
<Image Source="/Images/Mannetje.png" Margin="10,5,20,5" />
<TextBlock Text="Message" VerticalAlignment="Center" HorizontalAlignment="Center" TextAlignment="Center" Width="500" FontSize="35" Foreground="{StaticResource sckbP}" FontWeight="Bold" />
</StackPanel>
</Border>
<Border BorderBrush="{StaticResource sckbP}" BorderThickness="1" CornerRadius="10" Margin="0,0,0,50" MinHeight="300" >
<StackPanel Name="sComments" VerticalAlignment="Center" HorizontalAlignment="Center" TextBlock.FontSize="30" >
<TextBlock Text="koko" VerticalAlignment="Center" />
</StackPanel>
</Border>
</StackPanel>
</DockPanel>
</Window>