TrackBar.Orientation Proprietà

Definizione

Ottiene o imposta un valore che indica l'orientamento orizzontale o verticale della barra di rilevamento.

public:
 property System::Windows::Forms::Orientation Orientation { System::Windows::Forms::Orientation get(); void set(System::Windows::Forms::Orientation value); };
public System.Windows.Forms.Orientation Orientation { get; set; }
member this.Orientation : System.Windows.Forms.Orientation with get, set
Public Property Orientation As Orientation

Valore della proprietà

Uno dei valori di Orientation.

Eccezioni

Il valore assegnato non è uno dei valori di Orientation.

Esempio

Nell'esempio TrackBar seguente viene illustrato come impostare alcune delle proprietà.

trackBar2->Orientation = Orientation::Vertical;
trackBar3->Orientation = Orientation::Vertical;
trackBar1->Maximum = 255;
trackBar2->Maximum = 255;
trackBar3->Maximum = 255;
trackBar1->Width = 400;
trackBar2->Height = trackBar1->Width;
trackBar3->Height = trackBar1->Width;
trackBar1->LargeChange = 16;
trackBar2->LargeChange = 16;
trackBar3->LargeChange = 16;
trackBar2.Orientation = Orientation.Vertical;
trackBar3.Orientation = Orientation.Vertical;
trackBar1.Maximum = trackBar2.Maximum = trackBar3.Maximum = 255;
trackBar1.Width = 400;
trackBar2.Height = trackBar3.Height = trackBar1.Width;
trackBar1.LargeChange = trackBar2.LargeChange = trackBar3.LargeChange = 16;
trackBar2.Orientation = Orientation.Vertical
trackBar3.Orientation = Orientation.Vertical
trackBar1.Maximum = 255
trackBar2.Maximum = 255
trackBar3.Maximum = 255
trackBar1.Width = 400
trackBar2.Height = 400
trackBar3.Height = 400
trackBar1.LargeChange = 16
trackBar2.LargeChange = 16
trackBar3.LargeChange = 16

Commenti

Quando la proprietà è impostata su , la Orientation casella di scorrimento passa da sinistra a destra quando aumentaValue.Orientation.Horizontal Quando la proprietà è impostata su Orientation.Vertical, la casella di scorrimento viene spostata dal basso verso l'alto Orientation come aumentaValue.

Si applica a

Vedi anche