FollowedMatrix.xaml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <UserControl x:Class="NEIntelligentControl2.Views.Matrix.FollowedMatrix"
  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" Loaded="UserControl_Loaded" Unloaded="UserControl_Unloaded">
  9. <UserControl.ContextMenu>
  10. <ContextMenu>
  11. <MenuItem Header="取消关注" Click="MenuItem_Click" Tag="removefollow"/>
  12. </ContextMenu>
  13. </UserControl.ContextMenu>
  14. <Grid Margin="23,23,23,57">
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="Auto"/>
  17. <RowDefinition/>
  18. </Grid.RowDefinitions>
  19. <Border BorderThickness="1" BorderBrush="#FF31B9FB">
  20. <TextBlock Margin="25,5" Text="关注风机" Foreground="#FF31B9FB" FontSize="18" HorizontalAlignment="Left" FontWeight="Bold"/>
  21. </Border>
  22. <Border Grid.Row="1" BorderThickness="1,0,1,1" BorderBrush="#FF31B9FB">
  23. <UniformGrid x:Name="_UGMain" Columns="6" Margin="2" VerticalAlignment="Top"/>
  24. </Border>
  25. </Grid>
  26. </UserControl>