123456789101112131415161718192021 |
- <UserControl x:Class="NEIntelligentControl2.Views.Infos.WindturbineDetailsCard"
- 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.Infos"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Margin="2">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Border Background="#FF4187EE" CornerRadius="7,7,0,0">
- <TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=UserControl, Mode=FindAncestor}, Path=CardTitle}" HorizontalAlignment="Center" Foreground="White" Margin="3" FontSize="14"/>
- </Border>
- <Border Grid.Row="1" Background="#FFC8EAFF" CornerRadius="0,0,7,7">
- <UniformGrid Columns="2" x:Name="ug" Margin="3,3,3,5"/>
- </Border>
- </Grid>
- </UserControl>
|