Files
Shrlalgo.RvKits/Melskin/Controls/RepeatButtonTransparent.xaml

18 lines
919 B
Plaintext
Raw Normal View History

2025-10-10 11:19:58 +08:00
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
2025-12-23 21:35:54 +08:00
<Style x:Key="RepeatButtonTransparentStyle" TargetType="{x:Type RepeatButton}">
2025-10-10 11:19:58 +08:00
<Setter Property="OverridesDefaultStyle" Value="true" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="Focusable" Value="false" />
<Setter Property="IsTabStop" Value="false" />
2025-07-11 09:20:23 +08:00
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type RepeatButton}">
2025-10-10 11:19:58 +08:00
<Rectangle
2025-12-23 21:35:54 +08:00
Width="{TemplateBinding Width}"
2025-10-10 11:19:58 +08:00
Height="{TemplateBinding Height}"
2025-12-23 21:35:54 +08:00
Fill="{TemplateBinding Background}" />
2025-07-11 09:20:23 +08:00
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>