eDosStationFull/eDosStation/ShowEPDDose.xaml

26 lines
1.2 KiB
Text
Raw Normal View History

2026-08-18 12:15:26 +02:00
<Window x:Class="eDosStation.ShowEPDDose"
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="Show EPD Dose" Height="620" Width="785"
Loaded="Window_Loaded"
WindowStartupLocation="CenterScreen"
FontFamily="Segoe UI"
WindowStyle="None" Closing="Window_Closing" WindowState="Maximized">
<DockPanel>
<!-- Status Bar anchored at the bottom -->
<StatusBar DockPanel.Dock="Bottom">
<StatusBarItem x:Name="statusEPD" Content="Epd" />
</StatusBar>
<!-- Main UserControl occupying the remaining window area -->
<local:DosimeterDisplay x:Name="DosimeterView"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
ClosedClicked="DosimeterView_CloseClicked"/>
</DockPanel>
</Window>