添加列表视图项目
我对listveiw有一些疑问 我有一个包含两列的列表视图,我想将项目添加到以编程方式给出的第一列,另一列来自数据库...可以
column1 column2
apple from database
orange "
banana "
这样做吗... 任何人都可以帮我解决这个问题吗...
我正在使用 C#,Visual Studio..
I have some doubts in listveiw
I have a listview with two columns, i want to add items to the first column which are given programmatically and the other column is from database... like
column1 column2
apple from database
orange "
banana "
can this be done....
can any one help me out with this...
I am using C# ,visual studio..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您希望如何匹配以编程方式添加的值和数据库值,但您可以为每个数据库值创建一个新的列表项,即将
项目添加到集合中
,然后将集合绑定到您的控件
I'm not sure how you want to match the programmatically added values and the db values, but you could create a new listitem for each of the database values i.e.
Add the items to a collection
Then bind the collection to your control