9 changed files with 164 additions and 123 deletions
@ -0,0 +1,51 @@ |
|||
<Styles xmlns="https://github.com/perspex"> |
|||
<Style Selector="GridSplitter:vertical"> |
|||
<Setter Property="Width" Value="6"/> |
|||
<Setter Property="Background" Value="LightGray"/> |
|||
<Setter Property="Template"> |
|||
<ControlTemplate> |
|||
<Border Background="{TemplateBinding Background}"> |
|||
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|||
<StackPanel.Styles> |
|||
<Style Selector="Ellipse"> |
|||
<Setter Property="HorizontalAlignment" Value="Center"/> |
|||
<Setter Property="Width" Value="4"/> |
|||
<Setter Property="Height" Value="4"/> |
|||
<Setter Property="Fill" Value="#404040"/> |
|||
<Setter Property="Margin" Value="1"/> |
|||
</Style> |
|||
</StackPanel.Styles> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
</StackPanel> |
|||
</Border> |
|||
</ControlTemplate> |
|||
</Setter> |
|||
</Style> |
|||
<Style Selector="GridSplitter:horizontal"> |
|||
<Setter Property="Height" Value="6"/> |
|||
<Setter Property="Background" Value="LightGray"/> |
|||
<Setter Property="Template"> |
|||
<ControlTemplate> |
|||
<Border Background="{TemplateBinding Background}"> |
|||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|||
<StackPanel.Styles> |
|||
<Style Selector="Ellipse"> |
|||
<Setter Property="VerticalAlignment" Value="Center"/> |
|||
<Setter Property="Width" Value="4"/> |
|||
<Setter Property="Height" Value="4"/> |
|||
<Setter Property="Fill" Value="#404040"/> |
|||
<Setter Property="Margin" Value="1"/> |
|||
</Style> |
|||
</StackPanel.Styles> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
</StackPanel> |
|||
</Border> |
|||
</ControlTemplate> |
|||
</Setter> |
|||
</Style> |
|||
</Styles> |
|||
|
|||
@ -1,24 +0,0 @@ |
|||
<Style xmlns="https://github.com/perspex" Selector="HorizontalGridSplitter"> |
|||
<Setter Property="Height" Value="6"/> |
|||
<Setter Property="Background" Value="LightGray"/> |
|||
<Setter Property="Template"> |
|||
<ControlTemplate> |
|||
<Border Background="{TemplateBinding Background}"> |
|||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|||
<StackPanel.Styles> |
|||
<Style Selector="Ellipse"> |
|||
<Setter Property="VerticalAlignment" Value="Center"/> |
|||
<Setter Property="Width" Value="4"/> |
|||
<Setter Property="Height" Value="4"/> |
|||
<Setter Property="Fill" Value="#404040"/> |
|||
<Setter Property="Margin" Value="1"/> |
|||
</Style> |
|||
</StackPanel.Styles> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
</StackPanel> |
|||
</Border> |
|||
</ControlTemplate> |
|||
</Setter> |
|||
</Style> |
|||
@ -1,24 +0,0 @@ |
|||
<Style xmlns="https://github.com/perspex" Selector="VerticalGridSplitter"> |
|||
<Setter Property="Width" Value="6"/> |
|||
<Setter Property="Background" Value="LightGray"/> |
|||
<Setter Property="Template"> |
|||
<ControlTemplate> |
|||
<Border Background="{TemplateBinding Background}"> |
|||
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|||
<StackPanel.Styles> |
|||
<Style Selector="Ellipse"> |
|||
<Setter Property="HorizontalAlignment" Value="Center"/> |
|||
<Setter Property="Width" Value="4"/> |
|||
<Setter Property="Height" Value="4"/> |
|||
<Setter Property="Fill" Value="#404040"/> |
|||
<Setter Property="Margin" Value="1"/> |
|||
</Style> |
|||
</StackPanel.Styles> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
<Ellipse/> |
|||
</StackPanel> |
|||
</Border> |
|||
</ControlTemplate> |
|||
</Setter> |
|||
</Style> |
|||
Loading…
Reference in new issue