ReconnectionWindow.xaml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Window x:Class="PRSDesktop.Forms.ReconnectionWindow"
  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:PRSDesktop.Forms"
  7. mc:Ignorable="d"
  8. WindowStartupLocation="CenterScreen"
  9. WindowStyle="None"
  10. BorderThickness="0"
  11. BorderBrush="Transparent"
  12. AllowsTransparency="True"
  13. Background="Transparent"
  14. MouseDown="Window_MouseDown"
  15. Width="350" Height="200"
  16. Title="Reconnecting">
  17. <Border CornerRadius="10" BorderBrush="Gray" BorderThickness="0.75" Padding="5,5,5,0" Background="White">
  18. <Grid Margin="5">
  19. <Grid.RowDefinitions>
  20. <RowDefinition Height="Auto"/>
  21. <RowDefinition Height="*"/>
  22. <RowDefinition Height="Auto"/>
  23. </Grid.RowDefinitions>
  24. <Grid.ColumnDefinitions>
  25. <ColumnDefinition Width="*"/>
  26. <ColumnDefinition Width="Auto"/>
  27. </Grid.ColumnDefinitions>
  28. <Image Grid.Row="0" Grid.RowSpan="2" Grid.Column="0" Grid.ColumnSpan="2"
  29. x:Name="Splash" Margin="20,10,20,10" Stretch="Uniform" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
  30. <Button x:Name="CloseButton" Content="Exit PRS"
  31. Grid.Row="0" Grid.Column="1"
  32. Background="LightYellow" Padding="5" Margin="5"
  33. Click="CloseButton_Click">
  34. <Button.Style>
  35. <Style TargetType="Button">
  36. <Style.Resources>
  37. <Style TargetType="Border">
  38. <Setter Property="CornerRadius" Value="10"/>
  39. </Style>
  40. </Style.Resources>
  41. </Style>
  42. </Button.Style>
  43. </Button>
  44. <Label Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
  45. VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
  46. HorizontalContentAlignment="Center"
  47. FontSize="14" FontStyle="Oblique"
  48. Margin="0"
  49. Content="Connection lost; attempting to reconnect ..."/>
  50. </Grid>
  51. </Border>
  52. </Window>