This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我对它的工作原理感到困惑,它不应该只显示这个 ISeq 中的值,它至少接收正确的值
public ISeq<double> List
{
set {
ComboBox.DataSource = new BindingSource(value,null);
ComboBox.DisplayMember = "Value".ToString();
ComboBox.ValueMember = "value";
}
}