Rectangle.xaml 1.0 KB

12345678910111213141516171819202122
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:hc="clr-namespace:HandyControl.Controls">
  4. <Style x:Key="RectangleCircular" TargetType="Rectangle">
  5. <Setter Property="hc:RectangleAttach.Circular" Value="True"/>
  6. </Style>
  7. <Style x:Key="RectangleFocusVisual" TargetType="Rectangle">
  8. <Setter Property="Margin" Value="-2"/>
  9. <Setter Property="Opacity" Value=".6"/>
  10. <Setter Property="SnapsToDevicePixels" Value="True"/>
  11. <Setter Property="Stroke" Value="{DynamicResource SecondaryBorderBrush}"/>
  12. <Setter Property="StrokeThickness" Value="2"/>
  13. <Setter Property="StrokeDashArray" Value="1 1"/>
  14. </Style>
  15. <Style x:Key="RectangleFocusVisualCircular" BasedOn="{StaticResource RectangleFocusVisual}" TargetType="Rectangle">
  16. <Setter Property="hc:RectangleAttach.Circular" Value="True"/>
  17. </Style>
  18. </ResourceDictionary>