名前空間一覧 > GrapeCity.Web.Input.IMCombo 名前空間 > GcComboBox クラス : SelectedIndex プロパティ |
例外 | 解説 |
---|---|
System.ArgumentOutOfRangeException | -1未満または、項目の総数以上の値が設定されています。 |
Private Sub GcComboBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GcComboBox1.SelectedIndexChanged If GcComboBox1.SelectedIndex = -1 Then Return Label1.Text = GcComboBox1.Items(GcComboBox1.SelectedIndex).Text.ToString() End Sub
private void GcComboBox1_SelectedIndexChanged(object sender, System.EventArgs e) { if (GcComboBox1.SelectedIndex == -1) return; label1.Text = GcComboBox1.Items[GcComboBox1.SelectedIndex].Text.ToString(); }