Stepper.axaml 647 B

1234567891011121314
  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:controls="clr-namespace:SukiUI.Controls">
  4. <ControlTheme x:Key="SukiStepperStyle" TargetType="controls:Stepper">
  5. <Setter Property="Template">
  6. <ControlTemplate>
  7. <Grid Name="PART_GridStepper" />
  8. </ControlTemplate>
  9. </Setter>
  10. </ControlTheme>
  11. <ControlTheme x:Key="{x:Type controls:Stepper}"
  12. BasedOn="{StaticResource SukiStepperStyle}"
  13. TargetType="controls:Stepper" />
  14. </ResourceDictionary>