1
你好的人IM填充數據網格當的形式加載事件是這樣的:要顯示的動畫,同時datagridview的與數據填充
private void Inventory_Load(object sender, EventArgs e)
{
AcidDBDataContext db = new AcidDBDataContext();
BindingSource bs = new BindingSource();
bs.DataSource = db.GetProducts.ToList();
dgvInventory.DataSource = bs;
ProductBindingNavigator.BindingSource = bs;
ShowtoolStripButton2.Visible = false;
foreach (DataGridViewColumn c in dgvInventory.Columns)
{
c.DefaultCellStyle.Font = new Font("Arial", 12.0F, GraphicsUnit.Pixel);
}
}
其工作正常,但有一個問題我需要幾秒鐘,我的形式被凍結。如何,而我的DataGrid是填補顯示加載動畫我可以做的,當電網將使用C#的WinForms充滿隱藏動畫
林。 謝謝了很多
什麼需要大部分時間,從數據庫中提取結果或顯示它們? – stuartd 2011-06-09 14:27:01
是的。執行查詢。我有本地數據庫呢 – 2011-06-09 14:38:35