多个依赖组合框在滚动时导致错误

时间:2013-08-12 14:17:38

标签: c# combobox

我已经创建了一个测试项目,它重新创建了我在一个程序中遇到的错误,我被告知要修复它。您可以在http://tomsfreelance.com/stackoverflow/comboBox/(代码位于底部)

查看

当我单击第二个组合框的picturebox按钮并使用鼠标中键向上滚动时,会发生以下错误。这里的关键点是必须选择第一个组合框 - 这在首次启动应用程序时会发生。

此代码段中出现错误:

private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (comboBox2.SelectedIndex <= 0)
        {
            comboBox3.SelectedIndex = 0;
            comboBox3.Items.Clear();
            comboBox3.Enabled = false;
        }

这是应用程序的作用:

  • 当第一个组合框设置为它的第一个项目时,第二个组合框被设置为它的第一个项目,它的项目被清除,然后它被禁用。
  • 对于与第三个组合框相关的第二个组合框,这是真的。

现在,每个组合框都会侦听事件SelectedIndexChanged。因此,当第一个组合框更改为它的第一个项目时,第二个组合框将设置为它的第一个项目。

如果在调试器中运行它,则必须启用错误断点,否则VS调试器将表现为没有错误。如果您运行独立的exe,您将收到错误消息。

为什么会出现此错误消息?我可以通过删除所选索引并在Items.Clear上方启用移动来修复错误消息。不过,我对它为何会发生更加好奇。在我看来,同时拥有两个活动元素可能是一个Windows bug? (除了这个糟糕的编程样本之外。)

enter image description here

这个问题是https://stackoverflow.com/questions/18150063/combo-box-scrolling-up-with-mouse-wheel-causes-error#comment26589550_18150063

的后续问题
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ComboBoxTest
{
    public partial class Form1 : Form
    {
        public static int refillPrefix = 0;

        public Form1()
        {
            InitializeComponent();
            initComboBox();
            comboBox1.SelectedIndex = 1;
            comboBox2.SelectedIndex = 4;
            comboBox3.SelectedIndex = 5;
        }

        public void initComboBox()
        {
            comboBox1.Items.Clear();
            for (int x = 0; x < 15; ++x)
            {
                comboBox1.Items.Add("Test " + x.ToString());
            }
        }

        public void fillCombo2()
        {
            comboBox2.Items.Clear();
            for (int x = 0; x < 15; ++x)
            {
                comboBox2.Items.Add("Test " + refillPrefix.ToString() + "_" + x.ToString());
            }
            refillPrefix++;
        }

        public void fillCombo3()
        {
            for (int x = 0; x < 15; ++x)
            {
                comboBox3.Items.Add("Test " + refillPrefix.ToString() + "_" + x.ToString());
            }
            refillPrefix++;
        }

        private void comboBox1_Click(object sender, EventArgs e)
        {
            comboBox1.DroppedDown = !comboBox1.DroppedDown;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            comboBox1.DroppedDown = !comboBox1.DroppedDown;
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {
            comboBox2.DroppedDown = !comboBox2.DroppedDown;
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (comboBox1.SelectedIndex <= 0)
            {
                comboBox2.SelectedIndex = 0;
                comboBox2.Items.Clear();
                comboBox2.Enabled = false;
                pictureBox1.Enabled = false;
            }
            else
            {
                fillCombo2();
                comboBox2.Enabled = true;
                pictureBox1.Enabled = true;
            }
        }

        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (comboBox2.SelectedIndex <= 0)
            {
                comboBox3.SelectedIndex = 0;
                comboBox3.Items.Clear();
                comboBox3.Enabled = false;
            }
            else
            {
                fillCombo3();
                comboBox3.Enabled = true;
            }
        }

        private void comboBox3_SelectedIndexChanged(object sender, EventArgs e)
        {

        }
    }
}

1 个答案:

答案 0 :(得分:0)

如果没有选择tehre,您可能正在尝试设置或使用所选项目的索引?

检查combobox.selecteditems.count。如果为0,则退出例程。当更改所选索引或取消选择项时,会在组合框/列表框中发生这种情况。你基本上想要检查每一个电话,如果没有选择的项目,不要与任何人一起工作。呼叫应该发生两次,在第二次呼叫时,将有选定的项目,您可以使用它们。