TabIndex funktioniert nicht richtig

Ich habe eine Windows-Formularanwendung. Auf dem Formular befinden sich drei Gruppenfelder. Jedes Gruppenfeld enthält einige Steuerelemente. Bitte sehen Sie das Bild.

Es gibt ein Gruppenfeld "Flag", das einige Kontrollkästchen enthält. "flag" befindet sich in "groupbox1". Ich habe die Tabulatortaste verwendet, um die einzelnen Steuerelemente durchzugehen, aber es funktioniert nicht für Kontrollkästchen in "flag". Ich habe für jedes Steuerelement den richtigen Tab-Index festgelegt.

Es funktioniert für Textfelder und Schaltflächen, aber für Kontrollkästchen.

Warum? Danke für die Hilfe.

BEARBEITEN

 // groupBox2
        // 
        this.groupBox2.Controls.Add(this.pictureBox10);
        this.groupBox2.Controls.Add(this.pictureBox9);
        this.groupBox2.Controls.Add(this.pictureBox8);
        this.groupBox2.Controls.Add(this.pictureBox7);
        this.groupBox2.Controls.Add(this.chkStoplight);
        this.groupBox2.Controls.Add(this.lblStoplight);
        this.groupBox2.Controls.Add(this.chkIsCount);
        this.groupBox2.Controls.Add(this.chkExceptionFlag);
        this.groupBox2.Controls.Add(this.chkIsActive);
        this.groupBox2.Controls.Add(this.lblIsActive);
        this.groupBox2.Controls.Add(this.lblExceptionFlag);
        this.groupBox3.Controls.Add(this.lblIsCount);
        this.groupBox2.Location = new System.Drawing.Point(16, 201);
        this.groupBox2.Name = "groupBox2";
        this.groupBox2.Size = new System.Drawing.Size(321, 70);
        this.groupBox2.TabIndex = 10;
        this.groupBox2.TabStop = true;
        this.groupBox2.Text = "Flags";

        // 
        // chkStoplight
        // 
        this.chkStoplight.AutoSize = true;
        this.chkStoplight.Location = new System.Drawing.Point(44, 25);
        this.chkStoplight.Name = "chkStoplight";
        this.chkStoplight.Size = new System.Drawing.Size(15, 14);
        this.chkStoplight.TabIndex = 0;
        this.chkStoplight.UseVisualStyleBackColor = true;

        In the property, I found TabStop is true for chkStoplight.

Antworten auf die Frage(2)

Ihre Antwort auf die Frage