TabControl.SelectedIndex Propiedad

Definición

Obtiene o establece el índice de la página de fichas seleccionada actualmente.

C#
[System.ComponentModel.Browsable(false)]
public int SelectedIndex { get; set; }

Valor de propiedad

Int32

Índice de base cero de la página de fichas seleccionada actualmente. El valor predeterminado es -1, que es también el valor si no hay ninguna página de fichas seleccionada.

Atributos

Excepciones

El valor es menor que -1.

Ejemplos

En el ejemplo de código siguiente se crea un TabControl objeto con dos TabPage objetos . La SelectedIndex propiedad establece tabPage2 como página de pestaña seleccionada actualmente con su valor de índice.

C#
using System.Drawing;
using System.Windows.Forms;

public class Form1 : Form
{
    private TabControl tabControl1;
    private TabPage tabPage1;
    private TabPage tabPage2;

    private void MyTabs()
    {
        this.tabControl1 = new TabControl();
        this.tabPage1 = new TabPage();
        this.tabPage2 = new TabPage();

        this.tabControl1.Controls.AddRange(new Control[] {
            this.tabPage1,
            this.tabPage2});
        this.tabControl1.Padding = new Point(15, 10);
        this.tabControl1.Location = new Point(35, 25);
        this.tabControl1.Size = new Size(220, 220);

        // Selects tabPage2 using SelectedIndex.
        this.tabControl1.SelectedIndex = 1;
    
        this.tabPage1.Text = "myTabPage1";
        this.tabPage1.TabIndex = 0;

        this.tabPage2.Text = "myTabPage2";
        this.tabPage2.TabIndex = 1;

        this.Size = new Size(300, 300);
        this.Controls.AddRange(new Control[] {
            this.tabControl1});
    }
    
    public Form1()
    {
        MyTabs();
    }

    static void Main() 
    {
        Application.Run(new Form1());
    }
}

Se aplica a

Producto Versiones
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

Consulte también