e67c79992c
- cambiate icone Reference - aggiunte icone in slice manager - spostato Update in TFS vicino a Reset
14 lines
659 B
XML
14 lines
659 B
XML
<Grid x:Class="ColumnHeader"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Text="{Binding Header, RelativeSource={RelativeSource AncestorType={x:Type Grid}}}"
|
|
Style="{StaticResource BaseTextBlock}"/>
|
|
<TextBlock Grid.Row="1"
|
|
Text="{Binding MeasureUnit, RelativeSource={RelativeSource AncestorType={x:Type Grid}}}"
|
|
Style="{StaticResource MeasureUnit_TextBlock}"/>
|
|
</Grid>
|