HintShowWindow.xaml 1.4 KB

123456789101112131415161718
  1. <common:BaseWindow x:Class="ClickOnceSetup.HintShow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:ClickOnceSetup"
  7. xmlns:common="clr-namespace:ClickOnceSetup.Common"
  8. mc:Ignorable="d"
  9. Title="HintShow" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" BorderThickness="2" BorderBrush="#6495ED">
  10. <Grid>
  11. <Label HorizontalAlignment="Left" Margin="55,126,0,0" VerticalAlignment="Top" Height="197" Width="717" FontSize="48">
  12. <TextBlock Name="hint" TextWrapping="Wrap" Text="{common:Translater Pleaseclose }" FontSize="36" />
  13. </Label>
  14. <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"/>
  15. <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"/>
  16. </Grid>
  17. </common:BaseWindow>