RectPort.xaml 871 B

1234567891011121314151617181920212223
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:c="clr-namespace:SHJX.Service.WorkFlowEdit">
  5. <ResourceDictionary.MergedDictionaries>
  6. <ResourceDictionary Source="/SHJX.Service.WorkFlowEdit;component/Themes/Shared.xaml" />
  7. </ResourceDictionary.MergedDictionaries>
  8. <Style TargetType="{x:Type c:RectPort}">
  9. <Setter Property="SnapsToDevicePixels" Value="true" />
  10. <Setter Property="Template">
  11. <Setter.Value>
  12. <ControlTemplate>
  13. <Rectangle
  14. Fill="LightBlue"
  15. Stroke="Black"
  16. StrokeThickness="1" />
  17. </ControlTemplate>
  18. </Setter.Value>
  19. </Setter>
  20. </Style>
  21. </ResourceDictionary>