将 IEnumerable Collection 的每个项目的每个属性分配给不同的文本框

发布于 2024-09-06 16:51:16 字数 261 浏览 3 评论 0原文

详细说明我想要实现的目标:

我的 itemsource 中有一个对象的集合。假设我的 itemsource 中有三个项目,并且我希望将每个项目的每个属性分配给不同的文本框,我怎样才能得到这个?

textbox1.text = // assign the first value of an item to this

textbox2.text = // assign the second value of an item to this

Elaboration of what I want to achieve :

I have an collection of an object in my itemsource.Suppose there are three items in my itemsource and i want each property of every single item to be assigned to different textboxes, how can i get this ?

textbox1.text = // assign the first value of an item to this

textbox2.text = // assign the second value of an item to this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

韬韬不绝 2024-09-13 16:51:16

为什么需要 lambda?

var itemSource = enumerable.toList();
textbox1.text = itemSource[0].toString();
textbox2.text = itemSource[1].toString();

Why would you need a lambda?

var itemSource = enumerable.toList();
textbox1.text = itemSource[0].toString();
textbox2.text = itemSource[1].toString();
平安喜乐 2024-09-13 16:51:16
textbox1.Text = enumerable.First();
textbox2.Text = enumerable.Skip(1).First();
textbox1.Text = enumerable.First();
textbox2.Text = enumerable.Skip(1).First();
躲猫猫 2024-09-13 16:51:16

给这只猫剥皮的另一种方法:

textbox1.Text = itemSource.ElementAtOrDefault(0);
textbox2.Text = itemSource.ElementAtOrDefault(1);

Yet another way to skin this cat:

textbox1.Text = itemSource.ElementAtOrDefault(0);
textbox2.Text = itemSource.ElementAtOrDefault(1);
南街女流氓 2024-09-13 16:51:16

您可以将文本框放入列表中,并逐步浏览项目源和文本框列表。

var textBoxes = new List<TextBox> { textbox1, textbox2 };
for( int index = 0; index < itemsSource.Count; index++ )
{
    textBoxes[index].Text = itemsSource[index].ToString();
}

我不确定 lambda 表达式会为您做什么。你能扩展你的问题吗?

You could put your text boxes into a list and step through both the items source and the text box list.

var textBoxes = new List<TextBox> { textbox1, textbox2 };
for( int index = 0; index < itemsSource.Count; index++ )
{
    textBoxes[index].Text = itemsSource[index].ToString();
}

I'm not sure what a lambda expression would do for you. Could you expand your question?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文