【发布时间】:2016-10-04 22:43:38
【问题描述】:
其实我的数据集源是mysql,这是我的代码
private void frmNewInstallment_Load_1(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'cricflip_RoyalResidencyDataSet.booked_homes' table. You can move, or remove it, as needed.
this.booked_homesTableAdapter.Fill(this.cricflip_RoyalResidencyDataSet.booked_homes);
}
但仍然需要很长时间才能加载我想消除延迟的表单。有什么方法可以异步执行此操作。
【问题讨论】: