C# DataGridView中绑定ArryList数据

Posted

tags:

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

我定义了一个arrylist命名为arr,里面已经产生了一些宽度为14的string元素,现在我只想在运行时,dateGridView中可以显示出arrylist的元素内容。
我用datagridview.dateSorse=arr;运行时只显示arrylist中元素的宽度,也就是全是14、14、14。。。。。请问怎么样能显示元素内容?

参考技术A 如果只是单纯的string元素是没有办法完全显示的
2种解决方法
1.使用对象作为对象的载体
2.使用连接字符
比如“a”,"b"
到界面上去的时候再使用split方法拿出来
参考技术B public class Test

private string _Id = string.Empty;

public string Id

get return _Id;
set _Id = value;



Form1:
private void button1_Click(object sender, EventArgs e)

ArrayList item = new ArrayList();

Test test = new Test();
test.Id = "aaaaa";
Test test1 = new Test();
test1.Id = "bbbb";
Test test2 = new Test();
test2.Id = "cccc";
item.Add(test);
item.Add(test1);
item.Add(test2);
this.dataGridView1.DataSource = item;

在dataGridView中无法找到DataMember的情况,应该不能正常显示本回答被提问者采纳

c#中list绑定datagridview为啥不显示数据

public class Users

public ObjectId _id;
public string Name get; set;
public string Career set; get;
public string Name1 get; set;
public string Identity get; set;

List<Users> a = new List<Users>();
dataGridView1.DataSource = a;
我想先查询一下如在textBox中输入一值查询,将查询后的数据存入a中,然后和在dataGridView显示出来,为什么只显示了Name,Career,Name1,Identity的列明却没有显示数据?

在学习DataGridView 和List<T>绑定时发现DataGridView不会显示数据。后来发现要用类的属性才能正常显示,如果直接用类的字段等来显示,则无法显示数据。
代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication20

public partial class Form1 : Form

public Form1()

InitializeComponent();


private void Form1_Load(object sender, EventArgs e)


dgv_message.GridColor = Color.Blue;
//设置datagridview颜色
dgv_message.DataSource = new List<student>()
//设置datagridview数据来源来自List <student>

new student()sName="小李",Age=20,
new student()sName="小张",Age=40,
new student()sName="小王",Age=60,
new student()sName="小黄",Age=22
;
//对List <student>赋值
dgv_message.Columns[0].HeaderText = "姓名";
dgv_message.Columns[1].HeaderText = "年龄";
//设置datagridview列名


//定义class student并实现读写赋值
public class student

private string name;
private int age;

public string sName

get return name;
set name = value;


public int Age

get return age;
set age =value ;




如果把student中类变成以下代码,则无法显示:原因没有读写赋值
public class student

public string sName;
public int Age;
参考技术A 建议你再仔细看下datagridview的数据操作资料,百分之八九十可能是你代码没写对,确保代码写全,有问题可以自己加断点调试,培养好这个习惯可以给你带来很大的收获。本回答被提问者采纳 参考技术B 看你代码你只是new了一个users集合 并没有往集合中添加数据啊 参考技术C 字段要数据绑定到对应列

以上是关于C# DataGridView中绑定ArryList数据的主要内容,如果未能解决你的问题,请参考以下文章

如何从没有绑定源 C# 生成的 datagridview 中检索数据源?

C# DataGridView中绑定ArryList数据

使用查找组合框 c# 绑定 Datagridview 多列排序

C# winform中 界面加载时datagridview绑定了数据源(datatable),修改datagridview的内容后,如何更新数

c# 中如何把实体类绑定到dataGridView并显示出来。

c#字典dictionary绑定datagridview如何排序