添加列表视图项目

发布于 2024-11-11 17:40:57 字数 273 浏览 2 评论 0原文

我对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 技术交流群。

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

发布评论

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

评论(1

堇年纸鸢 2024-11-18 17:40:57

我不确定您希望如何匹配以编程方式添加的值和数据库值,但您可以为每个数据库值创建一个新的列表项,即将

ListItem item = new ListItem("apple",[database value]);

项目添加到集合中

ItemCollection.Items.Add(item);

,然后将集合绑定到您的控件

ListView.DataSource = ItemCollection;

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.

ListItem item = new ListItem("apple",[database value]);

Add the items to a collection

ItemCollection.Items.Add(item);

Then bind the collection to your control

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