1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Window x:Class="Saga.PlugIn.VerticalPipeCheck.WinTipVPipeCheckComplete"
- 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"
- mc:Ignorable="d" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
- Height="300" Width="450"
- Title="提示">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition Height="43"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100"></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Image Height="36" Width="36" VerticalAlignment="Bottom" HorizontalAlignment="Right"
- Source="../CreateFacility/Image/成功.png"></Image>
- <Label Grid.Row="0" Grid.Column="1" Content="立管连接检查已完成"
- FontSize="16" FontWeight="UltraBlack"
- VerticalAlignment="Bottom"></Label>
- <StackPanel Grid.Row="1" Grid.Column="1">
- <WrapPanel>
- <Label Content="上层立管"></Label>
- <Label Content="{Binding Path=UpCount}"></Label>
- <Label Content="个"></Label>
- </WrapPanel>
- <WrapPanel>
- <Label Content="下层立管"></Label>
- <Label Content="{Binding Path=DownCount}"></Label>
- <Label Content="个"></Label>
- </WrapPanel>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="1" Background="LightGray">
- <Button Width="82" Height="23" Content="确认"
- HorizontalAlignment="Right" Margin="0,10,10,10"
- Click="ButtonNext_OnClick" ></Button>
- </Grid>
- </Grid>
- </Window>
|