123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <Window x:Class="Saga.PlugIn.CreateFacility.WinTipExisted"
- 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"
- xmlns:local="clr-namespace:Saga.PlugIn.CreateFacility"
- mc:Ignorable="d" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
- Height="300" Width="450"
- Title="提示">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition Height="43"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Margin="10,0">
- <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="Image/警告.png"></Image>
- <Label Grid.Row="0" Grid.Column="1" Content="设备已存在,请检查"
- FontSize="16" FontWeight="UltraBlack"
- VerticalAlignment="Bottom"></Label>
- <WrapPanel Grid.Row="1" Grid.Column="1" >
- <Label Content="{Binding Path=Tip}" VerticalAlignment="Center"></Label>
- <Button Height="23" Content="复制"
- Click="ButtonCopy_OnClick">
- <Button.Style >
- <Style TargetType="Button">
- <Setter Property="Foreground" Value="DeepSkyBlue"></Setter>
- <Setter Property="Background" Value="Transparent"></Setter>
- <Setter Property="BorderThickness" Value="0"></Setter>
- </Style>
- </Button.Style>
- </Button>
- </WrapPanel>
-
- </Grid>
- <Grid Grid.Row="1" Background="#F0F0F0">
- <WrapPanel HorizontalAlignment="Right">
- <Button Width="82" Height="23" Content="定位模型"
- HorizontalAlignment="Right" Margin="0,10,6,10"
- Click="ButtonFocus_OnClick"
- ></Button>
- <Button Width="82" Height="23" Content="重新输入"
- HorizontalAlignment="Right" Margin="0,10,10,10"
- Click="ButtonNext_OnClick" ></Button>
- </WrapPanel>
-
- </Grid>
- </Grid>
- </Window>
|