gpt4 book ai didi

c# - 将通用列表绑定(bind)到下拉列表

转载 作者:太空宇宙 更新时间:2023-11-03 22:24:15 25 4
gpt4 key购买 nike

我有

public class ListA
{

private string code;
private string name;

public string Code { get { return code; } set { code = value; } }
public string Name { get { return name; } set { name = value; } }

}

List<ListA> lst = new List<ListA>();

public List<ListA> getList()
{
lst.Add(new ListA { Code = "ABC", Name = "Smith" });
lst.Add(new ListA { Code = "XYZ", Name = "Abbey" });

return lst;
}

在下拉列表中,我希望填充 ABC:Smith。

ddlList.DataTextField = "Name"; 

仅填充名称。

我想填充名称和代码。我怎么做。请帮忙。

最佳答案

似乎DataTextField 只能用于显示单个属性。您可以像下面这样在 ListA 上创建一个新属性:

public string Display { get { return Code + ":" + Name; } }

或完全删除 DataTextField 并使用

public override string ToString() { return Code + ":" + Name; }

或者创建一个继承自 ListA 的新类,并执行我上面提到的其中一项操作以正确显示。

关于c# - 将通用列表绑定(bind)到下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1975185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com