终端一体化运控平台
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.
 
 
 

39 regels
1.6 KiB

  1. <Window x:Class="BeDesignerSCADA.View.ChildEditWindow"
  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. mc:Ignorable="d"
  8. Title="子控件编辑器" Height="800" Width="920"
  9. Background="White"
  10. BorderBrush="#FFDEDEDE"
  11. BorderThickness="1"
  12. WindowState="Maximized"
  13. WindowStartupLocation="CenterOwner">
  14. <Window.Resources>
  15. <ResourceDictionary>
  16. <ResourceDictionary.MergedDictionaries>
  17. <ResourceDictionary Source="/可视化配置工具;component/Themes/Styles.xaml"></ResourceDictionary>
  18. <ResourceDictionary Source="/BPASmartClient.SCADAControl;component/Themes/Generic.xaml" />
  19. </ResourceDictionary.MergedDictionaries>
  20. </ResourceDictionary>
  21. </Window.Resources>
  22. <Grid>
  23. <Grid.RowDefinitions>
  24. <RowDefinition/>
  25. <RowDefinition Height="40"/>
  26. </Grid.RowDefinitions>
  27. <Border x:Name="main">
  28. </Border>
  29. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right">
  30. <Button Width="80" Height="30" Content="取消" x:Name="CancelBtn" Click="CancelBtn_Click" IsCancel="True"/>
  31. <Button Width="80" Height="30" Content="确认" x:Name="ConfirmBtn" Margin="8 0 4 0" Click="ConfirmBtn_Click"/>
  32. </StackPanel>
  33. </Grid>
  34. </Window>