终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 line
1.3 KiB

  1. <Window x:Class="BeDesignerSCADA.View.RunWindows"
  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:BeDesignerSCADA.View"
  7. xmlns:ctl="clr-namespace:BeDesignerSCADA.Controls"
  8. mc:Ignorable="d"
  9. WindowStyle="None"
  10. WindowState="Maximized"
  11. Title="模拟运行器" Height="450" Width="800">
  12. <Window.Resources>
  13. <ResourceDictionary>
  14. <ResourceDictionary.MergedDictionaries>
  15. <ResourceDictionary Source="/可视化配置工具;component/Themes/Styles.xaml"></ResourceDictionary>
  16. <ResourceDictionary Source="/BPASmartClient.SCADAControl;component/Themes/Generic.xaml" />
  17. </ResourceDictionary.MergedDictionaries>
  18. </ResourceDictionary>
  19. </Window.Resources>
  20. <Grid>
  21. <Grid.Background>
  22. <ImageBrush ImageSource="../Images/bj.png"/>
  23. </Grid.Background>
  24. <ctl:MenuRunCanvas x:Name="runCanvas" Visibility="{Binding DataContext.RunCanvasVisibility, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=UserControl}}" />
  25. </Grid>
  26. </Window>