- <UserControl x:Class="ServerDeployer.NameLabel"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <StackPanel>
- <TextBlock x:Name="NameText" Text="" FontSize="16"/>
- <StackPanel x:Name="DescPanel" Orientation="Horizontal">
- <Border Margin="4" Background="Black" Height="16" Width="16" CornerRadius="16" Padding="0" VerticalAlignment="Top">
- <TextBlock Foreground="White" Text="i" Width="14" TextAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="12"/>
- </Border>
- <TextBlock Margin="4" x:Name="Desc" Text="" Foreground="Blue" FontSize="12" VerticalAlignment="Top" TextWrapping="WrapWithOverflow" MaxWidth="300"/>
- </StackPanel>
- </StackPanel>
- </UserControl>
|