public class FontType
{
...
public String Name { get { return _name; } }
public String DisplayName { get { return _displayName; } }
public Font UseFont { get { return _font; } }
}
bindFontTypes.DataSource = availableFonts;
comboFontType.DataSource = bindFontTypes;
comboFontType.ValueMember = "Key";
comboFontType.DisplayMember = ...???;
這裏,bindFontTypes
是BindingSource。 availableFonts
是一個Hashtable,其中Keys是字符串,而Values是FontType的對象。對於comboFontType.DisplayMember
我想使用對象的.DisplayName屬性。我如何指定?可能嗎?C#:綁定散列表組合框問題
它的工作原理,謝謝! – flamey 2009-10-21 15:40:42