123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <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"
- xmlns:interactivity="clr-namespace:HandyControl.Interactivity">
- <Style x:Key="CarouselItemBaseStyle" TargetType="hc:CarouselItem">
- <Setter Property="Focusable" Value="False"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="hc:CarouselItem">
- <Border BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}">
- <ContentPresenter Margin="{TemplateBinding Padding}" ContentTemplate="{Binding ItemTemplate,RelativeSource={RelativeSource AncestorType=hc:Carousel}}"/>
- </Border>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <Style x:Key="CarouselPateButton" BasedOn="{StaticResource BaseStyle}" TargetType="RadioButton">
- <Setter Property="Margin" Value="5,0"/>
- <Setter Property="Width" Value="10"/>
- <Setter Property="Height" Value="10"/>
- <Setter Property="Background" Value="White"/>
- <Setter Property="BorderBrush" Value="{DynamicResource PrimaryBrush}"/>
- <Setter Property="Padding" Value="0"/>
- <Setter Property="BorderThickness" Value="1"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="ToggleButton">
- <Border CornerRadius="5" SnapsToDevicePixels="true" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}"/>
- <ControlTemplate.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter Property="Opacity" Value=".9"/>
- </Trigger>
- <Trigger Property="IsPressed" Value="True">
- <Setter Property="Opacity" Value=".6"/>
- </Trigger>
- <Trigger Property="IsChecked" Value="True">
- <Setter Property="Background" Value="{DynamicResource PrimaryBrush}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <Style TargetType="hc:Carousel">
- <Setter Property="PageButtonStyle" Value="{StaticResource CarouselPateButton}"/>
- <Setter Property="ItemContainerStyle" Value="{StaticResource CarouselItemBaseStyle}"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="hc:Carousel">
- <ControlTemplate.Triggers>
- <EventTrigger RoutedEvent="FrameworkElement.MouseEnter">
- <BeginStoryboard>
- <Storyboard>
- <DoubleAnimation Storyboard.TargetName="GridTop" Storyboard.TargetProperty="Opacity" To="1" Duration="0:0:.1"/>
- </Storyboard>
- </BeginStoryboard>
- </EventTrigger>
- <EventTrigger RoutedEvent="FrameworkElement.MouseLeave">
- <BeginStoryboard>
- <Storyboard>
- <DoubleAnimation Storyboard.TargetName="GridTop" Storyboard.TargetProperty="Opacity" To="0" Duration="0:0:.1"/>
- </Storyboard>
- </BeginStoryboard>
- </EventTrigger>
- </ControlTemplate.Triggers>
- <hc:SimplePanel ClipToBounds="True">
- <StackPanel x:Name="PART_Panel" Orientation="Horizontal"/>
- <hc:SimplePanel x:Name="GridTop" Opacity="0">
- <Button Command="interactivity:ControlCommands.Prev" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="30,0,0,0" Style="{StaticResource ButtonCustom}">
- <Border Width="50" Height="100" Background="{DynamicResource DarkOpacityBrush}" CornerRadius="4">
- <Path Margin="16" Fill="White" Style="{StaticResource LeftPathStyle}"/>
- </Border>
- </Button>
- <Button Command="interactivity:ControlCommands.Next" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,30,0" Style="{StaticResource ButtonCustom}">
- <Border Width="50" Height="100" Background="{DynamicResource DarkOpacityBrush}" CornerRadius="4">
- <Path Margin="16" Fill="White" Style="{StaticResource RightPathStyle}"/>
- </Border>
- </Button>
- </hc:SimplePanel>
- <StackPanel Name="PART_PanelPage" Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Center" Margin="0,0,0,20"/>
- </hc:SimplePanel>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </ResourceDictionary>
|