C#将选定的值从组合框中添加到数组中

时间:2016-01-06 14:26:12

标签: c# arrays combobox

我想将Combobox.SelectedValue作为新元素发送到数组中。

 public MainWindow()
 {   
        Combobox.DisplayMemberPath = "Text";
        Combobox.SelectedValuePath = "Value";
        Combobox.Items.Add(new { Text = "String", Value = 7 });
        Combobox.Items.Add(new { Text = "String", Value = 2 });

        ClassName[] array = ClassName[30];
        array[0] = Combobox.SelectedValue();
}

1 个答案:

答案 0 :(得分:0)

您不能隐式地将SelectedValue返回类型(字符串)强制转换为ClassName。如果将数组更改为字符串数组string []数组,则代码应该可以正常工作