NameLabel.xaml 869 B

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