1
0

TestControl.axaml 488 B

1234567891011121314151617
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:controls="using:UnloadableAssemblyLoadContextPlug">
  4. <Design.PreviewWith>
  5. <controls:TestControl />
  6. </Design.PreviewWith>
  7. <Style Selector="controls|TestControl">
  8. <!-- Set Defaults -->
  9. <Setter Property="Template">
  10. <ControlTemplate>
  11. <TextBlock Text="Templated Control" />
  12. </ControlTemplate>
  13. </Setter>
  14. </Style>
  15. </Styles>