0

我有一个listbox包含一些字符串...我想将这些字符串传递给一个空的dropdownlist?可能吗?只listbox选择将中的值。

我不知道我在做什么..为此,我必须使用我仍然感到困惑的 for 循环。

这是我现在的代码:

    string [] lines = new string [cartListBox.Items.Count];
    int select;

    for (int i = 0; i < lines.Length ; i++)
    {
        select = cartListBox.SelectedValue
        watchedMoviesDropDownList.Items.Add(cartListBox.Items.Count.ToString());
    }

但是,当我调试它时,它给了我一个错误,说索引超出范围...... :( 请帮助......!

4

1 回答 1

0

这样做要简单得多,您不需要:

string [] lines

也不:

int select

只需使用以下代码:

for (int x = 0; x < cartListBox.Items.Count; x++)
    watchedMoviesDropDownList.Items.Add(cartListBox.Items[x]);
于 2013-09-29T17:45:37.317 回答