Generic.xaml 748 B

12345678910111213141516171819
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:WWPipeLine.WPF">
  5. <Style TargetType="{x:Type local:BForm}">
  6. <Setter Property="Template">
  7. <Setter.Value>
  8. <ControlTemplate TargetType="{x:Type local:BForm}">
  9. <Border Background="{TemplateBinding Background}"
  10. BorderBrush="{TemplateBinding BorderBrush}"
  11. BorderThickness="{TemplateBinding BorderThickness}">
  12. </Border>
  13. </ControlTemplate>
  14. </Setter.Value>
  15. </Setter>
  16. </Style>
  17. </ResourceDictionary>