12345678910111213141516171819202122232425 |
- <UserControl x:Class="NEIntelligentControl2.Views.Matrix.MalfunctionMatrix"
- 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.Matrix"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid Margin="23,23,23,57">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Border BorderThickness="1" BorderBrush="#FF31B9FB">
- <TextBlock Margin="25,5" Text="故障风机" Foreground="#FF31B9FB" FontSize="18" HorizontalAlignment="Left" FontWeight="Bold"/>
- </Border>
- <Border Grid.Row="1" BorderThickness="1,0,1,1" BorderBrush="#FF31B9FB">
- <ScrollViewer Template="{DynamicResource ScrollViewerControlTemplateStyle}" VerticalScrollBarVisibility="Auto">
- <UniformGrid x:Name="_UGMain" Columns="6" Margin="2" VerticalAlignment="Top"/>
- </ScrollViewer>
- </Border>
- </Grid>
- </UserControl>
|