在组合框中设置默认项目

时间:2010-12-03 05:14:24

标签: c# visual-studio winforms

我有一个在组合框中设置项目的功能,默认情况下会设置一个项目,如

- 选择列表 -

 public void SetOperationDropDown()

    {

        int? cbSelectedValue = null;
        if(cmbOperations.Items.Count == 0)
        {
            //This is for adding four operations with value in operation dropdown  
            cmbOperations.Items.Insert(0, "PrimaryKeyTables");
            cmbOperations.Items.Insert(1, "NonPrimaryKeyTables");
            cmbOperations.Items.Insert(2, "ForeignKeyTables");
            cmbOperations.Items.Insert(3, "NonForeignKeyTables");
            cmbOperations.Items.Insert(4, "UPPERCASEDTables");
            cmbOperations.Items.Insert(5, "lowercasedtables");
            //ByDefault the selected text in the cmbOperations will be -SELECT OPERATIONS-. 
            cmbOperations.Text = "-SELECT OPERATIONS-";
        }
        else
        {
            if(!string.IsNullOrEmpty("cmbOperations.SelectedValue"))
            {
                cbSelectedValue = Convert.ToInt32(cmbOperations.SelectedValue);
            }
        }
        //Load the combo box cmbOperations again 
        if(cbSelectedValue != null)
        {
            cmbOperations.SelectedValue = cbSelectedValue.ToString();
        }
    }

有人可以建议这样做吗?

1 个答案:

答案 0 :(得分:14)

我已经重写了这个答案以澄清一些内容。

首先,必须将“默认”文本添加为​​组合项目。 combo.Text属性的使用只会将组合描述性文本添加到组合框中,这是第一次用户对控件执行某些操作时“丢失”。 如果您希望在组合中永久使用“默认”文本,则必须将其添加为组合框项目。

根据您提供的代码,只需修改

cmbOperations.Text = "-SELECT OPERATIONS-";

cmbOperations.Items.Insert(0, "-SELECT OPERATIONS-");

请注意,这样您可以将项"-SELECT OPERANDS-"添加到列表中的第0个(读取第一个)位置。 还要确保所有后续项目都增加1,因为它们现在在列表中向下移动了一个空格。

最后,在代码末尾添加

cboOperations.SelectedIndex = 0;
行。通过这样做,您告诉组合框在表单(或控件)加载时最初显示您的“默认”项目。

还有一件事。我不确定除了设置组合项之外你想用代码实现什么,但是如果你想检查用户选择了什么用cboOperations.SelectedIndex属性,其中包含当前所选项目的组合。您可以添加简单的

if(cboOperations.SelectedIndex == someIntValue){...}
其余的是你的程序逻辑;)