|
|
|
@ -1,9 +1,17 @@
@@ -1,9 +1,17 @@
|
|
|
|
|
<UserControl x:Class="ICSharpCode.CodeQuality.Gui.NodeDescription" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
|
|
|
|
<Border BorderBrush="LightGray" CornerRadius="8" BorderThickness="3" > |
|
|
|
|
<Grid> |
|
|
|
|
<Grid Margin="5"> |
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<UserControl |
|
|
|
|
x:Class="ICSharpCode.CodeQuality.Gui.NodeDescription" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
|
|
|
|
<Border |
|
|
|
|
BorderBrush="Black" |
|
|
|
|
CornerRadius="8" |
|
|
|
|
BorderThickness="1" |
|
|
|
|
Background="LightGray"> |
|
|
|
|
<Grid |
|
|
|
|
Name="border"> |
|
|
|
|
<Grid |
|
|
|
|
Margin="5"> |
|
|
|
|
<Grid.ColumnDefinitions> |
|
|
|
|
<ColumnDefinition /> |
|
|
|
|
<ColumnDefinition /> |
|
|
|
@ -14,20 +22,30 @@
@@ -14,20 +22,30 @@
|
|
|
|
|
<RowDefinition /> |
|
|
|
|
<RowDefinition /> |
|
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
<TextBlock Text="Type :" ></TextBlock> |
|
|
|
|
<TextBlock Text="Class :" Grid.Row="1"></TextBlock> |
|
|
|
|
<TextBlock Text="Children :" Grid.Row="2"></TextBlock> |
|
|
|
|
<!-- |
|
|
|
|
<TextBlock Text="Uses" Grid.Row="3"></TextBlock> |
|
|
|
|
<TextBlock Text="Usedby" Grid.Row="4"></TextBlock> |
|
|
|
|
--> |
|
|
|
|
<TextBlock Text="{Binding ClassType}" Grid.Column="1"></TextBlock> |
|
|
|
|
<TextBlock Text="{Binding Node.Name}" Grid.Column="1" Grid.Row="1"></TextBlock> |
|
|
|
|
<TextBlock Text="{Binding Node.Children.Count}" Grid.Column="1" Grid.Row="2" ></TextBlock> |
|
|
|
|
<!-- |
|
|
|
|
<TextBlock Text="{Binding Uses}" Grid.Column="1" Grid.Row="3"></TextBlock> |
|
|
|
|
<TextBlock Text="{Binding UsedBy}" Grid.Column="1" Grid.Row="4"></TextBlock>--> |
|
|
|
|
<TextBlock Text="{Binding InfoText}" Grid.Row="3" Grid.ColumnSpan="2" /> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="Type :"></TextBlock> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="Class :" |
|
|
|
|
Grid.Row="1"></TextBlock> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="Children :" |
|
|
|
|
Grid.Row="2"></TextBlock> |
|
|
|
|
|
|
|
|
|
<TextBlock |
|
|
|
|
Text="{Binding ClassType}" |
|
|
|
|
Grid.Column="1"></TextBlock> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="{Binding Node.Name}" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
Grid.Row="1"></TextBlock> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="{Binding Node.Children.Count}" |
|
|
|
|
Grid.Column="1" |
|
|
|
|
Grid.Row="2"></TextBlock> |
|
|
|
|
<TextBlock |
|
|
|
|
Text="{Binding InfoText}" |
|
|
|
|
Grid.Row="3" |
|
|
|
|
Grid.ColumnSpan="2" /> |
|
|
|
|
</Grid> |
|
|
|
|
</Grid> |
|
|
|
|
</Border> |
|
|
|
|