Track.DecreaseRepeatButton Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera właściwość RepeatButton , która zmniejsza Value właściwość Track.
public:
property System::Windows::Controls::Primitives::RepeatButton ^ DecreaseRepeatButton { System::Windows::Controls::Primitives::RepeatButton ^ get(); void set(System::Windows::Controls::Primitives::RepeatButton ^ value); };
public System.Windows.Controls.Primitives.RepeatButton DecreaseRepeatButton { get; set; }
member this.DecreaseRepeatButton : System.Windows.Controls.Primitives.RepeatButton with get, set
Public Property DecreaseRepeatButton As RepeatButton
Wartość właściwości
Zmniejsza RepeatButton to kontrolkę Value Track po naciśnięciu klawisza RepeatButton . Wartość domyślna to kontrolka RepeatButton , która ma ustawienia domyślne.
Przykłady
W poniższym przykładzie pokazano, jak DecreaseRepeatButton style i IncreaseRepeatButton są definiowane wewnątrz szablonu ScrollBar kontrolki, gdy Orientation właściwość ma Verticalwartość . Pełny przykład można znaleźć w temacie ScrollBar Styles and Templates (Style i szablony paska przewijania).
<Track Grid.Row="1" Name="PART_Track"
IsDirectionReversed="true">
<Track.DecreaseRepeatButton>
<RepeatButton Style="{DynamicResource ScrollBar_UpTrack}"/>
</Track.DecreaseRepeatButton>
<Track.Thumb>
<Thumb Style="{DynamicResource ScrollBar_HorizontalThumb}"/>
</Track.Thumb>
<Track.IncreaseRepeatButton>
<RepeatButton Style="{DynamicResource ScrollBar_DownTrack}"/>
</Track.IncreaseRepeatButton>
</Track>
Uwagi
Gdy kontrolka Track znajduje się w kontrolce Slider , Delay właściwości RepeatButton kontrolek Track powiązania z właściwością Delay kontrolki Slider .