MainWindow.xaml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <Window x:Class="LogoForceTestApp.Views.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:core="clr-namespace:LogoForceTestApp.Core;assembly=LogoForceTestApp.Core"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:hc="https://handyorg.github.io/handycontrol"
  7. xmlns:icon="http://metro.mahapps.com/winfx/xaml/iconpacks"
  8. xmlns:local="clr-namespace:LogoForceTestApp"
  9. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  10. xmlns:prism="http://prismlibrary.com/"
  11. xmlns:viewmodels="clr-namespace:LogoForceTestApp.ViewModels"
  12. Title="{Binding Title}"
  13. Width="1440"
  14. Height="800"
  15. d:DataContext="{d:DesignInstance Type=viewmodels:MainWindowViewModel}"
  16. prism:ViewModelLocator.AutoWireViewModel="True"
  17. WindowStartupLocation="CenterScreen"
  18. WindowState="Maximized"
  19. mc:Ignorable="d">
  20. <Window.Resources>
  21. <ResourceDictionary>
  22. <local:JugetoBrushConvert x:Key="JugetoBrushConvet" />
  23. <local:JugetoStringConvet x:Key="JugetoStringConvet" />
  24. </ResourceDictionary>
  25. </Window.Resources>
  26. <Grid>
  27. <Grid.RowDefinitions>
  28. <RowDefinition Height="100" />
  29. <RowDefinition Height="*" />
  30. </Grid.RowDefinitions>
  31. <Grid>
  32. <Grid.Resources>
  33. <Style TargetType="Button">
  34. <Setter Property="BorderThickness"
  35. Value="0" />
  36. <Setter Property="Width"
  37. Value="90" />
  38. <Setter Property="Height"
  39. Value="90" />
  40. <Setter Property="Background"
  41. Value="{DynamicResource LightPrimaryBrush}" />
  42. </Style>
  43. </Grid.Resources>
  44. <Grid.ColumnDefinitions>
  45. <ColumnDefinition Width="*" />
  46. <ColumnDefinition Width="350" />
  47. <ColumnDefinition Width="*" />
  48. </Grid.ColumnDefinitions>
  49. <StackPanel Orientation="Horizontal">
  50. <Button Command="{Binding GoMainPageCommand}">
  51. <icon:FontAwesome Width="80"
  52. Height="80"
  53. Kind="HomeSolid" />
  54. </Button>
  55. <Button Command="{Binding DataCommand}">
  56. <icon:PackIconForkAwesome Width="80"
  57. Height="80"
  58. Kind="AreaChart" />
  59. </Button>
  60. <!--<Button Command="{Binding StatementPageCommand}">
  61. <icon:PackIconEvaIcons Width="80"
  62. Height="80"
  63. Kind="Eye" />
  64. </Button>-->
  65. <Button Command="{Binding LogCommand}">
  66. <icon:PackIconMaterial Width="80"
  67. Height="80"
  68. Kind="GestureTap" />
  69. </Button>
  70. <!--<Button Command="{Binding SettingCommand}">
  71. <icon:PackIconMaterial
  72. Width="80"
  73. Height="80"
  74. Kind="Tools" />
  75. </Button>-->
  76. <Button Command="{Binding Tracing}">
  77. <icon:PackIconMaterial Width="80"
  78. Height="80"
  79. Kind="ClipboardTextSearchOutline" />
  80. </Button>
  81. <!--<Button Command="{Binding SopCommand}">
  82. <icon:PackIconBoxIcons Width="80"
  83. Height="80"
  84. Kind="SolidCalendarMinus" />
  85. </Button>-->
  86. <Button Command="{Binding AccountCommand}">
  87. <icon:PackIconBoxIcons Width="80"
  88. Height="80"
  89. Kind="RegularDuplicate" />
  90. </Button>
  91. </StackPanel>
  92. <TextBlock Grid.Column="1"
  93. HorizontalAlignment="Center"
  94. VerticalAlignment="Center"
  95. FontSize="36"
  96. Foreground="Black">
  97. 智能门锁装配生产线
  98. </TextBlock>
  99. <StackPanel Grid.Column="2"
  100. Margin="10,0"
  101. HorizontalAlignment="Right"
  102. Orientation="Horizontal">
  103. <TextBlock VerticalAlignment="Center"
  104. FontSize="25"
  105. Foreground="Blue"
  106. Margin="20,0"
  107. Text="主屏" />
  108. <TextBlock VerticalAlignment="Center"
  109. FontSize="20"
  110. FontWeight="Bold"
  111. Text="当前用户:" />
  112. <TextBlock Margin="10,0"
  113. VerticalAlignment="Center"
  114. FontSize="18"
  115. Foreground="{Binding LoinBrush}"
  116. Text="{Binding LoginMessage}" />
  117. <!--<Button>
  118. <icon:FontAwesome
  119. Width="80"
  120. Height="80"
  121. Kind="PlaySolid" />
  122. </Button>
  123. <Button>
  124. <icon:FontAwesome
  125. Width="80"
  126. Height="80"
  127. Kind="StopSolid" />
  128. </Button>
  129. <Button>
  130. <icon:FontAwesome
  131. Width="80"
  132. Height="80"
  133. Kind="PauseSolid" />
  134. </Button>-->
  135. <Button Command="{Binding LoginCommand}">
  136. <icon:FontAwesome Width="80"
  137. Height="80"
  138. Kind="UserAltSolid" />
  139. </Button>
  140. <!--<Label
  141. Width="100"
  142. Height="100"
  143. Background="{Binding Jugement, Converter={StaticResource JugetoBrushConvet}}"
  144. Content="{Binding Jugement, Converter={StaticResource JugetoStringConvet}}"
  145. FontSize="20" />-->
  146. </StackPanel>
  147. </Grid>
  148. <hc:SimplePanel Grid.Row="1">
  149. <ContentControl prism:RegionManager.RegionName="{x:Static core:RegionNames.ContentRegion}" />
  150. <hc:ScrollViewer HorizontalAlignment="Right"
  151. IsInertiaEnabled="True"
  152. IsPenetrating="True"
  153. VerticalScrollBarVisibility="Hidden">
  154. <StackPanel Margin="0,10,10,10"
  155. VerticalAlignment="Bottom"
  156. hc:Growl.GrowlParent="True" />
  157. </hc:ScrollViewer>
  158. </hc:SimplePanel>
  159. </Grid>
  160. </Window>