98 lines
No EOL
5.7 KiB
XML
98 lines
No EOL
5.7 KiB
XML
<Window x:Class="eDosStation.EpdExit"
|
|
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:local="clr-namespace:eDosStation"
|
|
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
|
mc:Ignorable="d"
|
|
Title="Exit"
|
|
Height="900" Width="1500"
|
|
ResizeMode="NoResize"
|
|
VerticalAlignment="Center"
|
|
FontFamily="Segoe UI" FontSize="36"
|
|
Loaded="Window_Loaded"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="SingleBorderWindow"
|
|
Closing="Window_Closing" WindowState="Maximized">
|
|
<DockPanel>
|
|
<StatusBar DockPanel.Dock="Bottom" >
|
|
<StatusBarItem Name="statusEPD" Content="Epd" />
|
|
</StatusBar>
|
|
<TabControl>
|
|
<TabItem Name="Wait" HorizontalAlignment="Center" VerticalAlignment="Center" >
|
|
<Grid HorizontalAlignment="Center" VerticalAlignment="Center" Height="auto" Width="574">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="100" />
|
|
<ColumnDefinition Width="500" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Image Source="/Images/Mannetje.png" Width="87" HorizontalAlignment="Left"/>
|
|
<TextBlock Grid.Column="1" Text="Reading EPD. Please wait" FontWeight="Bold" VerticalAlignment="Center" Foreground="{StaticResource sckbP}" TextAlignment="Center" Margin="10,0" />
|
|
<Image Grid.Row="1" Grid.ColumnSpan="2" Source="/Images/Mk2OnReader.jpg" Width="300" Margin="10,10,10,50"/>
|
|
<telerik:RadProgressBar Grid.Row="2" Grid.ColumnSpan="2" Name="Progress" Style="{StaticResource styleTTOProgessBar}" HorizontalAlignment="Stretch" />
|
|
<telerik:RadButton Grid.Row="3" Grid.ColumnSpan="2" Name="bCancel" Content="Cancel" Click="BCloseExit_Click" Style="{DynamicResource OkCancelButton}" />
|
|
|
|
<telerik:RadStepProgressBar Grid.Row="4" Grid.ColumnSpan="2" x:Name="stepEPD" CanUserSelect="False" Margin="10,0,10,10" FontSize="24" >
|
|
<telerik:RadStepProgressBarItem Content="Open" />
|
|
<telerik:RadStepProgressBarItem Content="Connect" />
|
|
<telerik:RadStepProgressBarItem Content="Status" />
|
|
<telerik:RadStepProgressBarItem Content="DeIssue" />
|
|
</telerik:RadStepProgressBar>
|
|
|
|
</Grid>
|
|
</TabItem>
|
|
<TabItem Name="ok" VerticalAlignment="Center" HorizontalContentAlignment="Center" >
|
|
<local:DosimeterReturnSummary x:Name="DosimeterView"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"
|
|
CloseClicked="BCloseExit_Click"/>
|
|
|
|
</TabItem>
|
|
<TabItem Name="Alarm" VerticalAlignment="Center" >
|
|
<StackPanel Margin="50,50,50,50" VerticalAlignment="Center">
|
|
<Border Style="{StaticResource styleAlarmBorder}" >
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" TextAlignment="Center" TextWrapping="Wrap" >
|
|
<LineBreak/>
|
|
<Run>Your dose and/or doserate has been above the alarmlevel</Run>
|
|
<Run>during your visit !</Run>
|
|
<LineBreak/>
|
|
<LineBreak/>
|
|
<Run>Please contact</Run><LineBreak/><Run> the Radioprotection officer of the building.</Run>
|
|
<LineBreak/><LineBreak/>
|
|
<Run>He needs to validate and clear your alarm(s).</Run>
|
|
<LineBreak/>
|
|
</TextBlock>
|
|
</Border>
|
|
<telerik:RadButton Name="bConfirmAlarm" Click="BConfirmAlarm_Click" Content="OK" Width="190" Style="{StaticResource OkCancelButton}" Margin="50,50,50,50" />
|
|
</StackPanel>
|
|
</TabItem>
|
|
<TabItem Name="OtherAlarm" >
|
|
<StackPanel VerticalAlignment="Center">
|
|
<Border Style="{StaticResource styleAlarmBorder}" >
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" TextAlignment="Center" >
|
|
<LineBreak/>
|
|
<Run>Your EPD has encountered a problem.</Run>
|
|
<LineBreak/><LineBreak/>
|
|
<Run>Please contact</Run><LineBreak/><Run>the Radioprotection officer of the building.</Run>
|
|
<LineBreak/>
|
|
<LineBreak/>
|
|
<Run> He needs to investigate the alarm.</Run>
|
|
</TextBlock>
|
|
</Border>
|
|
<telerik:RadButton Name="bConfirmAlarm2" Click="BConfirmAlarm_Click" Content="OK" Width="190" Height="50" Style="{StaticResource OkCancelButton}" Margin="50,50,50,50" />
|
|
</StackPanel>
|
|
</TabItem>
|
|
</TabControl>
|
|
</DockPanel>
|
|
</Window>
|
|
|
|
|