123456789101112131415161718192021222324252627282930313233343536 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:hc="clr-namespace:HandyControl.Controls">
- <Style x:Key="RunningBlockBaseStyle" BasedOn="{StaticResource BaseStyle}" TargetType="hc:RunningBlock">
- <Setter Property="hc:BorderElement.CornerRadius" Value="{StaticResource DefaultCornerRadius}"/>
- <Setter Property="BorderBrush" Value="{DynamicResource BorderBrush}"/>
- <Setter Property="BorderThickness" Value="1"/>
- <Setter Property="Padding" Value="0,10"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="hc:RunningBlock">
- <hc:RunningBorder CornerRadius="{Binding Path=(hc:BorderElement.CornerRadius),RelativeSource={RelativeSource TemplatedParent}}" Padding="{TemplateBinding Padding}" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}">
- <hc:SimplePanel ClipToBounds="True">
- <hc:SimplePanel HorizontalAlignment="Left" x:Name="PART_Panel">
- <ContentPresenter x:Name="PART_ContentElement" RenderTransformOrigin="0.5,0.5" HorizontalAlignment="Left">
- <ContentPresenter.RenderTransform>
- <TransformGroup>
- <TranslateTransform/>
- </TransformGroup>
- </ContentPresenter.RenderTransform>
- </ContentPresenter>
- </hc:SimplePanel>
- </hc:SimplePanel>
- </hc:RunningBorder>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- <Style.Triggers>
- <Trigger Property="Orientation" Value="Vertical">
- <Setter Property="Padding" Value="10,0"/>
- </Trigger>
- </Style.Triggers>
- </Style>
- </ResourceDictionary>
|