ScrollBar.Track Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property System::Windows::Controls::Primitives::Track ^ Track { System::Windows::Controls::Primitives::Track ^ get(); };
public System.Windows.Controls.Primitives.Track Track { get; }
member this.Track : System.Windows.Controls.Primitives.Track
Public ReadOnly Property Track As Track
Property Value
The Track that is used with a ScrollBar control.
Examples
The following example shows how to access the Track control that is used with a ScrollBar control.
Track myScrollBarTrack = new Track();
myScrollBarTrack = myScrollBar.Track;
Dim myScrollBarTrack As New Track()
myScrollBarTrack = myScrollBar.Track
Remarks
A typical style template for a ScrollBar control includes a Track control that is surrounded on either side by two Button controls.
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.