Sic05/FrameworkLocal/UIClient/CenterViews/Tray/winTrayInfo.xaml

132 lines
4.9 KiB
Plaintext
Raw Normal View History

2022-12-13 09:35:10 +08:00
<Window x:Name="winTrayInfo1"
x:Class="MECF.Framework.UI.Client.CenterViews.Tray.winTrayInfo"
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"
mc:Ignorable="d"
Title="" Height="160" Width="335" WindowStyle="ToolWindow" WindowStartupLocation="CenterScreen" Loaded="winTrayInfo1_Loaded">
<Grid >
<Grid.RowDefinitions>
<RowDefinition Height="24"/>
<RowDefinition Height="32"/>
<RowDefinition Height="32"/>
<RowDefinition Height="32"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="120"/>
<ColumnDefinition Width="200"/>
</Grid.ColumnDefinitions>
<Label
Grid.Row="0"
Grid.ColumnSpan="3"
HorizontalContentAlignment="Center"
VerticalContentAlignment="Center"
Content="Tray Info"
FontSize="13"
Style="{DynamicResource Table_TitleStyle}" />
<!-- -->
<Border
Grid.Row="1"
Grid.Column="0"
Padding="5,1,0,1"
Background="{DynamicResource Table_BG_Title}"
BorderBrush="{DynamicResource Table_BD}"
BorderThickness="1,1,1,1">
<TextBlock
VerticalAlignment="Center"
FontSize="13"
Foreground="{DynamicResource FG_Black}"
Text="Tray Number"
TextWrapping="Wrap" />
</Border>
<Border
Grid.Row="1"
Grid.Column="1"
Padding="5,1"
Background="{Binding LLBStatusBackground}"
BorderBrush="{DynamicResource Table_BD}"
BorderThickness="1,1,1,1">
<TextBlock
Name="tbTrayNumber"
Margin="0,0,0,0"
Padding="0,0,0,0"
VerticalAlignment="Center"
FontSize="13"
Foreground="{DynamicResource FG_Black}"
Text=""
TextAlignment="Center"
TextWrapping="Wrap" />
</Border>
<!-- -->
<Border
Grid.Row="2"
Grid.Column="0"
Padding="5,1,0,1"
Background="{DynamicResource Table_BG_Title}"
BorderBrush="{DynamicResource Table_BD}"
BorderThickness="1,1,1,1">
<TextBlock
VerticalAlignment="Center"
FontSize="13"
Foreground="{DynamicResource FG_Black}"
Text="Run Timers"
TextWrapping="Wrap" />
</Border>
<Border
Grid.Row="2"
Grid.Column="1"
Padding="5,1"
Background="{Binding LLBStatusBackground}"
BorderBrush="{DynamicResource Table_BD}"
BorderThickness="1,1,1,1">
<TextBlock
Name="tbRunTimes"
Margin="0,0,0,0"
Padding="0,0,0,0"
VerticalAlignment="Center"
FontSize="13"
Foreground="{DynamicResource FG_Black}"
Text=""
TextAlignment="Center"
TextWrapping="Wrap" />
</Border>
<!-- -->
<Border
Grid.Row="3"
Grid.Column="0"
Padding="5,1,0,1"
Background="{DynamicResource Table_BG_Title}"
BorderBrush="{DynamicResource Table_BD}"
BorderThickness="1,1,1,1">
<TextBlock
VerticalAlignment="Center"
FontSize="13"
Foreground="{DynamicResource FG_Black}"
Text="Cost Degree"
TextWrapping="Wrap" />
</Border>
<Border
Grid.Row="3"
Grid.Column="1"
Padding="5,1"
Background="{Binding LLBStatusBackground}"
BorderBrush="{DynamicResource Table_BD}"
BorderThickness="1,1,1,1">
<TextBlock
Name="tbCostDegree"
Margin="0,0,0,0"
Padding="0,0,0,0"
VerticalAlignment="Center"
FontSize="13"
Foreground="{DynamicResource FG_Black}"
Text=""
TextAlignment="Center"
TextWrapping="Wrap" />
</Border>
</Grid>
</Window>