1234567891011121314151617181920212223242526272829 |
- <UserControl x:Class="NEIntelligentControl2.Views.Matrix.FollowedMatrix"
- 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" Loaded="UserControl_Loaded" Unloaded="UserControl_Unloaded">
- <UserControl.ContextMenu>
- <ContextMenu>
- <MenuItem Header="取消关注" Click="MenuItem_Click" Tag="removefollow"/>
- </ContextMenu>
- </UserControl.ContextMenu>
- <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">
- <UniformGrid x:Name="_UGMain" Columns="6" Margin="2" VerticalAlignment="Top"/>
- </Border>
- </Grid>
- </UserControl>
|