在ComboBox中添加“--Select--”

时间:2014-04-11 17:17:41

标签: c# combobox

我有一个Combobox,正在从Sharepoint List填充数据。 我需要在组合框中添加一个名为“--Select--”的值,并在启动应用程序时将其设置为默认值。

我无法在Sharepoint列表中添加“--Select”。请协助我怎么做。

以下是代码。

teamName = templatedata.getTeamName();
cmbteams.DataSource = teamName;

2 个答案:

答案 0 :(得分:1)

我假设Winform,

    cmbteams.Items.Insert(0, "SELECT");
    cmbteams.SelectedIndex = 0;

答案 1 :(得分:0)

这样做:

cmbteams.Items.Insert(0, "Select");

cmbteams.Items.Add(new Item("Select", 0));

您可以像这样设置默认值:

cmbteams.SelectedValue=0;

cmbteams.SelectedIndex=0;