49 lines
2.3 KiB
Text
49 lines
2.3 KiB
Text
|
|
<Window x:Class="eDosStation.HPHToolbox"
|
||
|
|
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="ShowEPDDose" Height="620" Width="785.554"
|
||
|
|
Loaded="Window_Loaded"
|
||
|
|
WindowStartupLocation="CenterScreen"
|
||
|
|
FontFamily="Segoe UI"
|
||
|
|
WindowStyle="None" Closing="Window_Closing" WindowState="Maximized">
|
||
|
|
<Window.Resources>
|
||
|
|
<local:AddConverter x:Key="AddConverter1"></local:AddConverter>
|
||
|
|
</Window.Resources>
|
||
|
|
<DockPanel>
|
||
|
|
<TextBlock DockPanel.Dock="Top" TextAlignment="Center" Text="HPH Tools" FontSize="30" />
|
||
|
|
<StatusBar DockPanel.Dock="Bottom" >
|
||
|
|
<StatusBarItem Name="statusEPD" Content="Epd" />
|
||
|
|
</StatusBar>
|
||
|
|
<Grid TextBlock.FontSize="24" >
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="auto"/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<telerik:RadButton Grid.Row="0" Name="bEpdOff" Content="EPD Off" />
|
||
|
|
<telerik:RadButton Grid.Row="1" Name="bEpdReset" Content="EPD Reset" />
|
||
|
|
<Grid Grid.Row="2" >
|
||
|
|
<telerik:RadProgressBar Name="Progress" Style="{StaticResource styleTTOProgessBar}" />
|
||
|
|
<TextBlock Name="ProgressText" Text="100" Foreground="White" FontSize="20" HorizontalAlignment="Center" />
|
||
|
|
</Grid>
|
||
|
|
|
||
|
|
<StackPanel Grid.Row="3" HorizontalAlignment="Center" VerticalAlignment="Center" >
|
||
|
|
<telerik:RadButton x:Name="bEpdCancel" Content="Close" Style="{StaticResource OkCancelButton}" Margin="0,20,0,20" Click="RadButton_Click" />
|
||
|
|
<TextBlock x:Name="tWaitFor" Text="" />
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</DockPanel>
|
||
|
|
</Window>
|
||
|
|
|
||
|
|
|