设置selectedindex后,单击控件,鼠标显示错误的项目

时间:2013-09-24 16:16:13

标签: c# winforms combobox

工程师要求组合框的数字从500到-500(底部列出负数,因此不是按字母顺序排列)。

他们还要求能够输入组合中的数字以跳转到正确的项目。

问题:输入“44”,标签。然后用鼠标单击控件,您可以看到“449”被选中。

以下是完整的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace combotest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            for (int i = 500; i > -500; i--)
            {
                comboBox1.Items.Add(i.ToString());
            }
        }

        private void comboBox1_Leave(object sender, EventArgs e)
        {
            comboBox1.SelectedIndex = comboBox1.FindStringExact(comboBox1.Text);
        }
    }
}

没问题!我告诉自己。 FindStringExact正在寻找第一个alpha匹配。所以我用循环替换Leave事件代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace combotest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            for (int i = 500; i > -500; i--)
            {
                comboBox1.Items.Add(i.ToString());
            }
        }

        private void setCombo(string value)
        {
            comboBox1.Items.Clear();

            int myindex = -1;
            for (int i = 500; i > -501; i--)
            {
                myindex += 1;

                comboBox1.Items.Add(i.ToString());
                if (i.ToString().Trim() == value.Trim())
                {
                    comboBox1.SelectedIndex = myindex;
                }
            }
        }

        private void comboBox1_Leave(object sender, EventArgs e)
        {
           // comboBox1.SelectedIndex = comboBox1.FindStringExact(comboBox1.Text);
            setCombo(comboBox1.Text);

        }
    }
}

我再次尝试,当我在键入“44”并且标签后点击组合鼠标时,仍然选择“449”。

2 个答案:

答案 0 :(得分:1)

由于你填充ComboBox的方式,449出现在列表中的早于44,因此它首先被选中(它是第一个与用户输入的内容最接近的匹配)。要获得所需的行为,您必须有两个列表 - 一个从0到500,另一个从0到-500。

而是使用NumericUpDown框并将Maximum属性设置为500,将Minimum值设置为-500。这将确保用户只能输入一个在指定范围内的数字。

答案 1 :(得分:0)

我只是建议

  1. 启用自动完成源为True
  2. 然后将您在组合框中添加的相同项目添加到“自动完成源”
  3. 将自动完成模式设置为“SuggestAppend”。
  4. 将Combobox的值设置为SelectedItem。
  5. 我不建议使用索引。