问题描述: 本来是想用dictionary来绑定combox的,结果给报了这么一个错。
解决方法:在网上查了一下,
Code comboBoxPlanResult.DataSource =new BindingSource(o,null); comboBoxPlanResult.DisplayMember ="Key"; comboBoxPlanResult.ValueMember ="Value"; 即可解决该问题。
参考:
本文共 289 字,大约阅读时间需要 1 分钟。
问题描述: 本来是想用dictionary来绑定combox的,结果给报了这么一个错。
解决方法:在网上查了一下,
Code comboBoxPlanResult.DataSource =new BindingSource(o,null); comboBoxPlanResult.DisplayMember ="Key"; comboBoxPlanResult.ValueMember ="Value"; 即可解决该问题。
参考:
转载于:https://www.cnblogs.com/kfx2007/archive/2012/05/05/2484646.html