Sic.Framework/MECF.Framework.UI.Client/TrayThickness/HistoryData/InspectCleanView.xaml

21 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-05-22 18:32:18 +08:00
<Window x:Class="MECF.Framework.UI.Client.TrayThickness.HistoryData.InspectCleanView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:MECF.Framework.UI.Client.TrayThickness.HistoryData"
mc:Ignorable="d"
WindowState="Normal" WindowStartupLocation="CenterScreen" ResizeMode="NoResize"
Window.SizeToContent="Height" Width="400" Topmost="True">
<Grid x:Name="Grid_Content" Margin="3,10,3,5" Height="Auto">
<StackPanel Orientation="Vertical">
<TextBlock Text="Needs Cleaning " HorizontalAlignment="Center" VerticalAlignment="Top" Foreground="Red" FontSize="18" FontWeight="Black" />
<TextBlock Name="txt_Coating" Text="" FontSize="12" Foreground="#666666" Margin="0,20,0,5" HorizontalAlignment="Center"
VerticalAlignment="Top" TextAlignment="Left"/>
</StackPanel>
</Grid>
</Window>