如何在C#WinForms中动态(运行时)填充数据网格视图
本文关键字:填充 数据 数据网 视图 网格 运行时 C#WinForms 动态 | 更新日期: 2023-09-27 18:25:30
我有一个应用程序,它可以与连接的硬件通信。当我打开硬件时,硬件会不断地向应用程序发送一些数据。我能够从应用程序中的硬件读取数据。
现在,我想将这些数据连续记录到网格视图中(每当应用程序接收到数据时,都需要向网格视图中添加一个新行,并填充该行中的数据)。
(或者请告诉我如何在每1秒内在网格视图中添加新行,并在运行时向其中添加一些数据)
请帮忙。我是c#的新手。
谢谢。
这是您的演示。我假设您的数据类型为Info
,如下所述,您可以根据您的数据结构(从硬件接收)相应地更改Properties
:
public partial class Form1 : Form {
public Form1(){
InitializeComponent();
dataGridView1.AllowUserToAddRows = false;//if you don't want this, just remove it.
dataGridView1.DataSource = data;
Timer t = new Timer(){Interval = 1000};
t.Tick += UpdateGrid;
t.Start();
}
private void UpdateGrid(object sender, EventArgs e){
char c1 = (char)rand.Next(65,97);
char c2 = (char)rand.Next(65,97);
data.Add(new Info() {Field1 = c1.ToString(), Field2 = c2.ToString()});
dataGridView1.FirstDisplayedScrollingRowIndex = data.Count - 1;//This will keep the last added row visible with vertical scrollbar being at bottom.
}
BindingList<Info> data = new BindingList<Info>();
Random rand = new Random();
//the structure of your data including only 2 fields to test
public class Info
{
public string Field1 { get; set; }
public string Field2 { get; set; }
}
}
如果您在对象或变量中的某个位置获取数据,那么这将适用于您。
// suppose you get the data in the object test which has two fields field1 and field2, then you can add them in the grid using below code:
grdView.Rows.Add(test.field1, test.field2);
我希望它能帮助你