12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <Window x:Class="Saga.PlugIn.CreateFacility.WinTipCreateSuccess"
- 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="60"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100"></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Image Height="40" Width="40" VerticalAlignment="Bottom" HorizontalAlignment="Right" Margin="10,0"
- Source="Image/成功.png"></Image>
- <Label Grid.Row="0" Grid.Column="1" Content="创建模型成功"
- FontSize="20" FontWeight="UltraBlack"
- VerticalAlignment="Bottom"></Label>
- <WrapPanel Grid.Row="1" Grid.Column="1" >
- <TextBlock Text="{Binding Path=Tip}"
- TextWrapping="WrapWithOverflow"
- FontSize="15" Margin="0,10,50,0"></TextBlock>
- <Button Height="24" Content="复制" Margin="0,10"
- 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="LightGray">
- <Button Width="100" Height="25" Background="Black" Foreground="White" Content="确认"
- HorizontalAlignment="Right" Margin="0,0,5,0" VerticalAlignment="Center"
- Click="ButtonNext_OnClick" ></Button>
- </Grid>
- </Grid>
- </Window>
|