终端一体化运控平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

31 строка
1.3 KiB

  1. <Window x:Class="BPASmartClient.ScreenLib.WindowShow"
  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:BPASmartClient.ScreenLib"
  7. mc:Ignorable="d"
  8. WindowStartupLocation="Manual"
  9. WindowState="Maximized"
  10. WindowStyle="None"
  11. Title="监控大屏" Height="1080" Width="1920">
  12. <Window.Resources>
  13. <ResourceDictionary>
  14. <ResourceDictionary.MergedDictionaries>
  15. <ResourceDictionary Source="/BPA.CustomResource;component/Themes/ProlineStyle.xaml" />
  16. </ResourceDictionary.MergedDictionaries>
  17. </ResourceDictionary>
  18. </Window.Resources>
  19. <Grid Background="{DynamicResource image大屏}">
  20. <Grid.RowDefinitions>
  21. <RowDefinition Height="100"/>
  22. <RowDefinition/>
  23. </Grid.RowDefinitions>
  24. <GroupBox x:Name="titlename" Header="攀华产线数据可视化大屏" Style="{DynamicResource TopStyle}" Tag="Start">
  25. </GroupBox>
  26. <Border x:Name="main" Grid.Row="1">
  27. </Border>
  28. </Grid>
  29. </Window>