WinTipVPipeCheckComplete.xaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Window x:Class="Saga.PlugIn.VerticalPipeCheck.WinTipVPipeCheckComplete"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
  7. Height="300" Width="450"
  8. Title="提示">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition></RowDefinition>
  12. <RowDefinition Height="43"></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition></RowDefinition>
  17. <RowDefinition></RowDefinition>
  18. </Grid.RowDefinitions>
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition Width="100"></ColumnDefinition>
  21. <ColumnDefinition></ColumnDefinition>
  22. </Grid.ColumnDefinitions>
  23. <Image Height="36" Width="36" VerticalAlignment="Bottom" HorizontalAlignment="Right"
  24. Source="../CreateFacility/Image/成功.png"></Image>
  25. <Label Grid.Row="0" Grid.Column="1" Content="立管连接检查已完成"
  26. FontSize="16" FontWeight="UltraBlack"
  27. VerticalAlignment="Bottom"></Label>
  28. <StackPanel Grid.Row="1" Grid.Column="1">
  29. <WrapPanel>
  30. <Label Content="上层立管"></Label>
  31. <Label Content="{Binding Path=UpCount}"></Label>
  32. <Label Content="个"></Label>
  33. </WrapPanel>
  34. <WrapPanel>
  35. <Label Content="下层立管"></Label>
  36. <Label Content="{Binding Path=DownCount}"></Label>
  37. <Label Content="个"></Label>
  38. </WrapPanel>
  39. </StackPanel>
  40. </Grid>
  41. <Grid Grid.Row="1" Background="LightGray">
  42. <Button Width="82" Height="23" Content="确认"
  43. HorizontalAlignment="Right" Margin="0,10,10,10"
  44. Click="ButtonNext_OnClick" ></Button>
  45. </Grid>
  46. </Grid>
  47. </Window>