TextBox.axaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="TextBox">
  4. <Setter Property="BorderBrush" Value="{DynamicResource PrsTileBorder}" />
  5. <Setter Property="BorderThickness">
  6. <Setter.Value>
  7. <DynamicResource ResourceKey="PrsBorderThickness" />
  8. </Setter.Value>
  9. </Setter>
  10. <Setter Property="Background" Value="{DynamicResource PrsTileBackground}" />
  11. <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}" />
  12. <Setter Property="CornerRadius" Value="{DynamicResource PrsCornerRadius}" />
  13. <Setter Property="Margin" Value="{DynamicResource PrsControlSpacing}"/>
  14. <Setter Property="VerticalContentAlignment" Value="Center"/>
  15. </Style>
  16. <Style Selector="TextBox /template/ ContentPresenter#PART_ContentPresenter">
  17. <Setter Property="BorderThickness" Value="0" />
  18. <Setter Property="Background" Value="{DynamicResource PrsTileBackground}" />
  19. <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}" />
  20. </Style>
  21. <Style Selector="TextBox:pointerover /template/ ContentPresenter#PART_ContentPresenter">
  22. <Setter Property="BorderThickness" Value="0" />
  23. <Setter Property="Background" Value="{DynamicResource PrsTileBackground}" />
  24. <Setter Property="Foreground" Value="{DynamicResource PrsTileForeground}" />
  25. </Style>
  26. <Style Selector="TextBox /template/ Border#PART_BorderElement">
  27. <Setter Property="BorderThickness" Value="0" />
  28. <Setter Property="Background" Value="{DynamicResource PrsTileBackground}" />
  29. </Style>
  30. <Style Selector="TextBox:focus /template/ Border#PART_BorderElement">
  31. <Setter Property="BorderBrush" Value="{TemplateBinding BorderBrush}" />
  32. <Setter Property="BorderThickness" Value="{TemplateBinding BorderThickness}"/>
  33. <Setter Property="Background" Value="{TemplateBinding Background}" />
  34. </Style>
  35. </Styles>