将 IEnumerable Collection 的每个项目的每个属性分配给不同的文本框
详细说明我想要实现的目标:
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为什么需要 lambda?
Why would you need a lambda?
给这只猫剥皮的另一种方法:
Yet another way to skin this cat:
您可以将文本框放入列表中,并逐步浏览项目源和文本框列表。
我不确定 lambda 表达式会为您做什么。你能扩展你的问题吗?
You could put your text boxes into a list and step through both the items source and the text box list.
I'm not sure what a lambda expression would do for you. Could you expand your question?