SukiToastHost.axaml 1015 B

1234567891011121314151617181920212223
  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:suki="https://github.com/kikipoulet/SukiUI">
  4. <ControlTheme x:Key="SukiToastHostTheme" TargetType="suki:SukiToastHost">
  5. <Setter Property="Margin" Value="5"/>
  6. <Setter Property="ItemsPanel">
  7. <ItemsPanelTemplate>
  8. <!--
  9. <DockPanel VerticalAlignment="{TemplateBinding VerticalAlignment}" LastChildFill="True" />
  10. -->
  11. <DockPanel LastChildFill="True" />
  12. </ItemsPanelTemplate>
  13. </Setter>
  14. <Setter Property="Template">
  15. <ControlTemplate>
  16. <ItemsPresenter/>
  17. </ControlTemplate>
  18. </Setter>
  19. </ControlTheme>
  20. <ControlTheme x:Key="{x:Type suki:SukiToastHost}"
  21. BasedOn="{StaticResource SukiToastHostTheme}"
  22. TargetType="suki:SukiToastHost" />
  23. </ResourceDictionary>