MalfunctionMatrix.xaml 1.3 KB

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