gpt4 book ai didi

c# - DataBindings.Add 使用 IEnumerable

转载 作者:行者123 更新时间:2023-11-30 22:39:41 26 4
gpt4 key购买 nike

我想向报表中的控件添加新的数据绑定(bind)。

通常我加一个IEnumerable<someObject>到我的绑定(bind):

this.MyControl.DataBindings.Add("Text", this.CustomerDataSource, "Name");

但现在我想使用 IEnumerable<string>

this.MyControl.DataBindings.Add("Text", this.MyStringDatasource, "?");

在这种情况下,dataMember 是什么? (我正在使用来自 devExpress 的 XtraReport)

最佳答案

如果那根本行不通,我也不会感到惊讶;但是,您可以使用简单的投影,例如:

 var bindThis = sequence.Select(
s => new { Value = s });

则成员名称为"Value"

关于c# - DataBindings.Add 使用 IEnumerable<string>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5597452/

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