我是C#的新手,并尝试使用DataGridView来显示后端生成的一些数据。甚至花了大约两分钟来填充三排。我参考了msdn和其他一些来源的教程。以下是代码的一部分:
public partial class OrderBook : Form
{
private static DataTable order_dt = new DataTable();
public OrderBook()
{
InitializeComponent();
// columns in the DataTable
order_dt.Columns.Add("c1", typeof(string));
order_dt.Columns.Add("c2", typeof(string));
order_dt.Columns.Add("c3", typeof(int));
order_dt.Columns.Add("c4", typeof(string));
order_dt.Columns.Add("c5", typeof(int));
order_dt.Columns.Add("c6", typeof(string));
order_dt.Columns.Add("c7", typeof(int));
order_dt.Columns.Add("c8", typeof(int));
dgvOrderPanel.DataSource = order_dt; //dgvOrderPanel is the
//DataGridView component
foreach (DataGridViewColumn dgvc in dgvOrderPanel.Columns)
dgvc.Width = 65;
}
// add a new row to the DataTable on each call
public static void addRow(string order_info)
{
string[] fields = order_info.Split(' ');
order_dt.Rows.Add(fields[0], fields[1], int.Parse(fields[2]), fields[3],
int.Parse(fields[4]), fields[5], int.Parse(fields[6]),
int.Parse(fields[7]));
}
// the CellFormatting handler to determine the color of the row
private void dgvOrderPanel_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (dgvOrderPanel.Rows[e.RowIndex].Cells["c2"].Value.Equals("B"))
{
dgvOrderPanel.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Blue;
}
else
{
dgvOrderPanel.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Red;
}
}
// other methods...
}
每当后端通过套接字将包含order_info的字符串发送到前端时,将调用addRow()。每个order_info对应DataTable中的一行,以及DataGridView。
整个过程在同一个线程中执行。有没有想过为什么这么慢?任何建议表示赞赏!