Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这似乎很简单,但我似乎无法弄清楚。现在的方式是,在完成查询并通过绑定将数据添加到 DataGrid 之前,DataGrid 仅显示为其标题,没有行。我希望始终显示第一行,甚至在运行查询之前,为了视觉吸引力,有没有办法做到这一点?
在绑定到您的数据之前,插入一个空白行:datagrid.Items.Add(0);
datagrid.Items.Add(0);
在查询之前删除空白行: datagrid.Items.Remove(0);
datagrid.Items.Remove(0);
(编辑以反映 OP 反馈。)
此外,您可以启用在 DataGrid 中添加一行,它将创建一个可编辑的空行。