Track.IncreaseRepeatButton 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 wartość RepeatButton , która zwiększa Value właściwość Track klasy .
public:
property System::Windows::Controls::Primitives::RepeatButton ^ IncreaseRepeatButton { System::Windows::Controls::Primitives::RepeatButton ^ get(); void set(System::Windows::Controls::Primitives::RepeatButton ^ value); };
public System.Windows.Controls.Primitives.RepeatButton IncreaseRepeatButton { get; set; }
member this.IncreaseRepeatButton : System.Windows.Controls.Primitives.RepeatButton with get, set
Public Property IncreaseRepeatButton As RepeatButton
Wartość właściwości
Element RepeatButton , który zwiększa 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ść .
<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 .