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