4

我在 .aspx 页面上有一个空列表框

lstbx_confiredLevel1List

我正在以编程方式生成两个列表

List<String> l1ListText = new List<string>(); //holds the text 
List<String> l1ListValue = new List<string>();//holds the value linked to the text

我想lstbx_confiredLevel1List在 .aspx 页面上加载具有上述值和文本的列表框。所以我正在做以下事情:

lstbx_confiredLevel1List.DataSource = l1ListText;
lstbx_confiredLevel1List.DataTextField = l1ListText.ToString();
lstbx_confiredLevel1List.DataValueField = l1ListValue.ToString();
lstbx_confiredLevel1List.DataBind();

但它不会加载lstbx_confiredLevel1Listwithl1ListTextl1ListValue

有任何想法吗?

4

3 回答 3

11

为什么不使用与 相同的集合DataSource?它只需要具有键和值的两个属性。你可以使用一个Dictionary<string, string>

var entries = new Dictionary<string, string>();
// fill it here
lstbx_confiredLevel1List.DataSource = entries;
lstbx_confiredLevel1List.DataTextField = "Value";
lstbx_confiredLevel1List.DataValueField = "Key";
lstbx_confiredLevel1List.DataBind();

您还可以使用匿名类型或自定义类。

假设您已经拥有这些列表并且需要将它们用作数据源。您可以Dictionary即时创建:

Dictionary<string, string> dataSource = l1ListText
           .Zip(l1ListValue, (lText, lValue) => new { lText, lValue })
           .ToDictionary(x => x.lValue, x => x.lText);
lstbx_confiredLevel1List.DataSource = dataSource;
于 2012-12-14T13:12:05.857 回答
1

你最好使用字典:

Dictionary<string, string> list = new Dictionary<string, string>();
...
lstbx_confiredLevel1List.DataSource = list;
lstbx_confiredLevel1List.DataTextField = "Value";
lstbx_confiredLevel1List.DataValueField = "Key";
lstbx_confiredLevel1List.DataBind();
于 2012-12-14T13:11:20.457 回答
0

不幸的是DataTextFieldandDataValueField并没有那样使用。它们是它们应该显示在数据源中数据绑定的当前项目的字段的文本表示。

如果您有一个同时包含文本和值的对象,您将列出它并将其设置为数据源,如下所示:

public class MyObject {
  public string text;
  public string value;

  public MyObject(string text, string value) {
    this.text = text;
    this.value = value;
  }
}

public class MyClass {
  List<MyObject> objects;
  public void OnLoad(object sender, EventArgs e) {
    objects = new List<MyObjcet>();
    //add objects
    lstbx.DataSource = objects;
    lstbx.DataTextField = "text";
    lstbx.DataValueField = "value";
    lstbx.DataBind();
  }
}
于 2012-12-14T13:17:36.487 回答