ListView和DataGridView的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ListView和DataGridView的区别相关的知识,希望对你有一定的参考价值。

两个感觉功能差不多,DataGridView代码少,方便些。Lv有哪些特色?两者的区别是什么?

建议打开VS2005直接使用一下

从单词可以看出来一些,前者是绑定某一列

后者是整个数据表的显示,更复杂,功能更强大一些
从功能上来说,DataGridView强大
从性能上来说,ListView比DataGridView好点
参考技术A DataGridView

如何将选定列和行中的DataGridView值插入ListView?

我刚刚开始学习VB.Net,我试图将值从我的DataGridView移动到ViewList。我在线跟踪了一些其他教程,但我仍然无法解决。

Private Sub DataGridView1_CellContentClick(sender As System.Object, e As DataGridViewCellEventArgs) Handles dgvGPU.CellContentClick
    Dim senderGrid = DirectCast(sender, DataGridView)

    If TypeOf senderGrid.Columns(e.ColumnIndex) Is DataGridViewButtonColumn AndAlso
       e.RowIndex >= 0 Then

        Dim x As String = dgvGPU.Rows[e.RowIndex].Cells[5].Value.ToString()

        Form4.ListView1.Items.Add(x)
        Form4.Show()
    End If
End Sub
答案

看起来你在添加ListView项目时遇到了麻烦。它应该看起来像这样:

ListView1.Items.Add(New ListViewItem(New String() {x}))

以上是关于ListView和DataGridView的区别的主要内容,如果未能解决你的问题,请参考以下文章

〝WPF〞中的〝ListBox〞、〝ListView〞和〝DataGridView〞有啥区别?

WPF中的ListBox,ListView和DataGridView有啥区别

关于listView和dataGridView的问题

VS中dataGridView控件和ListView(View属性为Details;GridLines属性为true)控件在实现表格时候有什么不同?

winform ListView和DataGridView实现分页

C#中的控件listView 和DataGridView在运用中哪个比较好?