123456789101112131415161718192021 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:Aitex.Sorter.UI.Controls">
- <Style TargetType="{x:Type local:HeaderPanel}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type local:HeaderPanel}">
- <Border Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" BorderBrush="#84a567" Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
- <DockPanel Background="{StaticResource HeaderPanel_BG}">
- <Label Style="{StaticResource Rfid16Digits}" Content="{TemplateBinding Header}" HorizontalContentAlignment="Center" Width="{TemplateBinding Width}" DockPanel.Dock="Top" Background="{StaticResource HeaderPanel_BG_Title}" Height="35" />
- <ContentPresenter />
- </DockPanel>
- </Border>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </ResourceDictionary>
|