ManualSn.xaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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:AwInitilizer"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="ManualSn"
  8. Width="600"
  9. Height="150"
  10. ResizeMode="NoResize"
  11. Topmost="True"
  12. WindowStartupLocation="CenterOwner"
  13. WindowStyle="SingleBorderWindow"
  14. mc:Ignorable="d"
  15. x:Class="AwInitilizer.ManualSn">
  16. <Grid>
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="*" />
  19. <RowDefinition Height="auto" />
  20. </Grid.RowDefinitions>
  21. <Grid Grid.Row="0">
  22. <TextBox
  23. x:Name="uxSn"
  24. Margin="20"
  25. VerticalAlignment="Center" />
  26. </Grid>
  27. <Grid
  28. x:Name="uxCancelContainer"
  29. Grid.Row="1"
  30. Height="40">
  31. <Button
  32. Width="100"
  33. Height="30"
  34. HorizontalAlignment="Center"
  35. VerticalAlignment="Center"
  36. Click="Button_Click">
  37. <Label x:Name="uxBtnText" Content="Confirm" />
  38. </Button>
  39. </Grid>
  40. </Grid>
  41. </Window>