AboutForm.xaml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <Window x:Class="SHJX.Service.View.View.AboutForm"
  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:local="clr-namespace:SHJX.Service.View.View"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="关于系统"
  8. Width="600"
  9. Height="400"
  10. AllowsTransparency="True"
  11. Background="Transparent"
  12. ResizeMode="NoResize"
  13. WindowStartupLocation="CenterScreen"
  14. WindowStyle="None"
  15. mc:Ignorable="d">
  16. <Grid Margin="5">
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="2*" />
  19. <RowDefinition Height="1*" />
  20. <RowDefinition />
  21. <RowDefinition />
  22. <RowDefinition />
  23. </Grid.RowDefinitions>
  24. <Border Background="#99CCCC"
  25. BorderBrush="#66CCCC"
  26. Grid.Row="0"
  27. Grid.RowSpan="5"
  28. BorderThickness="2"
  29. CornerRadius="15" Margin="0,0,0,1">
  30. <Border.Effect>
  31. <DropShadowEffect Color="#CCCCCC"
  32. BlurRadius="10"
  33. ShadowDepth="0"
  34. Opacity="1">
  35. </DropShadowEffect>
  36. </Border.Effect>
  37. </Border>
  38. <Grid Grid.Row="0">
  39. <Image HorizontalAlignment="Center"
  40. VerticalAlignment="Center"
  41. Source="/SHJX.Service.Resource;component/Resources/Logo.png" />
  42. </Grid>
  43. <Grid Grid.Row="1">
  44. <TextBlock HorizontalAlignment="Center"
  45. VerticalAlignment="Center"
  46. FontFamily="幼圆"
  47. FontSize="30"
  48. FontWeight="Black"
  49. Foreground="#036FB7"
  50. Text="水质COD全自动智能分析工作站" />
  51. </Grid>
  52. <StackPanel Grid.Row="2"
  53. HorizontalAlignment="Center"
  54. Orientation="Horizontal">
  55. <TextBlock HorizontalAlignment="Center"
  56. VerticalAlignment="Center"
  57. FontFamily="幼圆"
  58. FontSize="20"
  59. FontWeight="Bold"
  60. Foreground="#036FB7"
  61. Text="版本:" />
  62. <TextBlock HorizontalAlignment="Center"
  63. VerticalAlignment="Center"
  64. FontFamily="幼圆"
  65. FontSize="20"
  66. FontWeight="Bold"
  67. Foreground="#036FB7"
  68. Text="23.08.24.01" />
  69. </StackPanel>
  70. <UniformGrid Grid.Row="3"
  71. Columns="1"
  72. Rows="2">
  73. <StackPanel HorizontalAlignment="Center"
  74. Orientation="Horizontal">
  75. <TextBlock HorizontalAlignment="Center"
  76. VerticalAlignment="Center"
  77. FontFamily="幼圆"
  78. FontSize="20"
  79. FontWeight="Bold"
  80. Foreground="#036FB7"
  81. Text="联系方式:" />
  82. <TextBlock HorizontalAlignment="Center"
  83. VerticalAlignment="Center"
  84. FontFamily="幼圆"
  85. FontSize="20"
  86. FontWeight="Bold"
  87. Foreground="#036FB7"
  88. Text="021-57790908" />
  89. </StackPanel>
  90. <StackPanel HorizontalAlignment="Center"
  91. Orientation="Horizontal">
  92. <TextBlock HorizontalAlignment="Center"
  93. VerticalAlignment="Center"
  94. FontFamily="幼圆"
  95. FontSize="20"
  96. FontWeight="Bold"
  97. Foreground="#036FB7"
  98. Text="公司网址:" />
  99. <TextBlock HorizontalAlignment="Center"
  100. VerticalAlignment="Center"
  101. FontFamily="幼圆"
  102. FontSize="20"
  103. FontWeight="Bold"
  104. Foreground="#036FB7"
  105. Text="https://www.tissuelyser.com" />
  106. </StackPanel>
  107. <TextBlock Margin="0,10"
  108. HorizontalAlignment="Center"
  109. VerticalAlignment="Bottom"
  110. FontFamily="幼圆"
  111. Foreground="#036FB7"
  112. Text="{Binding Path=AboutText}" />
  113. </UniformGrid>
  114. <Grid Grid.Row="0"
  115. Grid.RowSpan="4"
  116. Background="Transparent"
  117. MouseDown="Grid_MouseDown" />
  118. </Grid>
  119. </Window>