ResultDialog.xaml 843 B

12345678910111213141516171819202122232425
  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:local="clr-namespace:ST_CUBE_MES"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="ResultDialog"
  8. Width="400"
  9. Height="250"
  10. ResizeMode="NoResize"
  11. WindowStartupLocation="CenterOwner"
  12. WindowStyle="None"
  13. mc:Ignorable="d"
  14. x:Class="ST_CUBE_MES.ResultDialog">
  15. <Grid x:Name="uxBg" Background="Lime">
  16. <Label
  17. x:Name="uxResultText"
  18. HorizontalAlignment="Center"
  19. VerticalAlignment="Center"
  20. FontSize="72"
  21. Content="PASS"
  22. FontWeight="Bold"
  23. Foreground="White" />
  24. </Grid>
  25. </Window>