12345678910111213141516171819202122232425 |
- <Window
- 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:local="clr-namespace:ST_CUBE_MES"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="ResultDialog"
- Width="400"
- Height="250"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterOwner"
- WindowStyle="None"
- mc:Ignorable="d"
- x:Class="ST_CUBE_MES.ResultDialog">
- <Grid x:Name="uxBg" Background="Lime">
- <Label
- x:Name="uxResultText"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="72"
- Content="PASS"
- FontWeight="Bold"
- Foreground="White" />
- </Grid>
- </Window>
|