123456789101112131415161718 |
- <common:BaseWindow x:Class="ClickOnceSetup.HintShow"
- 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="HintShow" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" BorderThickness="2" BorderBrush="#6495ED">
- <Grid>
- <Label HorizontalAlignment="Left" Margin="55,126,0,0" VerticalAlignment="Top" Height="197" Width="717" FontSize="48">
- <TextBlock Name="hint" TextWrapping="Wrap" Text="{common:Translater Pleaseclose }" FontSize="36" />
- </Label>
- <Button x:Name="tryAgain" Content="{ common:Translater Retry }" HorizontalAlignment="Left" Margin="201,379,0,0" VerticalAlignment="Top" Width="171" Height="52" FontSize="24" Click="Button_Click"/>
- <Button x:Name="backMain" Content="{common:Translater BackMain }" HorizontalAlignment="Left" Margin="424,379,0,0" VerticalAlignment="Top" Width="171" Height="52" FontSize="24" Click="BackMain_Click"/>
- </Grid>
- </common:BaseWindow>
|