|
|
|
|
@ -1,7 +1,7 @@
@@ -1,7 +1,7 @@
|
|
|
|
|
<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="3" > |
|
|
|
|
<Border BorderBrush="LightGray" CornerRadius="8" BorderThickness="3" > |
|
|
|
|
<Grid> |
|
|
|
|
<Grid Margin="5"> |
|
|
|
|
<Grid.ColumnDefinitions> |
|
|
|
|
@ -12,17 +12,22 @@
@@ -12,17 +12,22 @@
|
|
|
|
|
<RowDefinition></RowDefinition> |
|
|
|
|
<RowDefinition></RowDefinition> |
|
|
|
|
<RowDefinition></RowDefinition> |
|
|
|
|
<RowDefinition></RowDefinition> |
|
|
|
|
|
|
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
<TextBlock Text="Class" ></TextBlock> |
|
|
|
|
<TextBlock Text="Children" Grid.Row="1"></TextBlock> |
|
|
|
|
<TextBlock Text="Uses" Grid.Row="2"></TextBlock> |
|
|
|
|
<TextBlock Text="Usedby" Grid.Row="3"></TextBlock> |
|
|
|
|
|
|
|
|
|
<TextBlock Text="{Binding Node.Name}" Grid.Column="1"></TextBlock> |
|
|
|
|
<TextBlock Text="{Binding Node.Children.Count}" Grid.Column="1" Grid.Row="1" ></TextBlock> |
|
|
|
|
<TextBlock Text="{Binding Uses}" Grid.Column="1" Grid.Row="2"></TextBlock> |
|
|
|
|
<TextBlock Text="{Binding UsedBy}" Grid.Column="1" Grid.Row="3"></TextBlock> |
|
|
|
|
<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>--> |
|
|
|
|
</Grid> |
|
|
|
|
</Grid> |
|
|
|
|
</Border> |
|
|
|
|
|