AllAGCInfoCard.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <UserControl x:Class="NEIntelligentControl2.Views.AGC.AllAGCInfoCard"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:NEIntelligentControl2.Views.AGC"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800" Loaded="UserControl_Loaded" Unloaded="UserControl_Unloaded">
  9. <Border Margin="23,23,23,57">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="Auto"/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <Border BorderThickness="1" BorderBrush="#FF31B9FB" Margin="-1,0,0,0">
  16. <TextBlock Margin="25,5" Text="AGC总览" Foreground="#FF31B9FB" FontSize="18" HorizontalAlignment="Left" FontWeight="Bold"/>
  17. </Border>
  18. <UniformGrid Grid.Row="1" x:Name="_UGMain" Columns="2"/>
  19. </Grid>
  20. </Border>
  21. </UserControl>