1234567891011121314 |
- <common:BaseWindow x:Class="ClickOnceSetup.InitGuidance"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:ClickOnceSetup"
- xmlns:common="clr-namespace:ClickOnceSetup.Common"
- mc:Ignorable="d"
- Title="InitGuidance" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" BorderThickness="2" BorderBrush="#6495ED">
- <Grid>
- <TextBlock x:Name="hint" TextWrapping="Wrap" Text="{ common:Translater Beingconfigured }" HorizontalAlignment="Center" Margin="116,63,71,0" VerticalAlignment="Top" Height="181" Width="609" FontSize="48"/>
- <local:UCWaitingProgress x:Name="waitingProgress" Margin="0,249,0,101" HorizontalAlignment="Center" VerticalAlignment="Center"></local:UCWaitingProgress>
- </Grid>
- </common:BaseWindow>
|