绑定到 a的ValueMamber
for a是什么?ComboBox
List<string>
我正在使用 Windows 窗体和 .NET Framework 4。
cmbForms.DataSource = Forms;
cmbForms.ValueMember="System.String";
if (!string.IsNullOrWhiteSpace(PhotoDescription.Details.Form))
{
cmbForms.SelectedValue = PhotoDescription.Details.Form;
}
在哪里Forms
:
public List<string> Forms { get; set; }