我的主窗体有一个按钮。单击按钮时,我会填充一个网格。这是我的按钮点击例程
private void btnSearch_Click(object sender, EventArgs e)
{
if (chkExcludeCallCust.Checked)
{
if (chkEnable.Checked)
RangeExclude = 1;
else
RangeExclude = 0;
}
new Thread(() =>
{
lock (thisLock)
{
Search();
}
}).Start();
}
当用户点击搜索按钮时调用一个线程。从那个线程我从数据库中获取数据并填充网格。
所以这是我的搜索程序:
private void Search()
{
DataSet ds = null;
if (wfrm.InvokeRequired)
{
wfrm.Invoke(new MethodInvoker(delegate
{
wfrm.Show();
wfrm.Refresh();
Application.DoEvents();
}));
}
else
{
wfrm.Show();
wfrm.Refresh();
Application.DoEvents();
}
if (this.InvokeRequired)
{
this.Invoke(new MethodInvoker(delegate {
this.Cursor = Cursors.WaitCursor;
btnSearch.Enabled = false;
}));
}
else
{
this.Cursor = Cursors.WaitCursor;
btnSearch.Enabled = false;
}
if (!PingTest())
{
if (this.InvokeRequired)
{
this.Invoke(new MethodInvoker(delegate
{
this.Cursor = Cursors.Default;
MessageBox.Show("VPN disconnected. Please connect and try again.", "DebtorCallerAssistance");
return;
}));
}
else
{
this.Cursor = Cursors.Default;
MessageBox.Show("VPN disconnected. Please connect and try again.", "DebtorCallerAssistance");
return;
}
}
if (chkExcludeCallCust.InvokeRequired)
{
chkExcludeCallCust.Invoke(new MethodInvoker(delegate
{
DataLayer.SetConnectionString(_country);
ds = LoadData(dtfrom.Value.ToString("yyyyMMdd"), dtto.Value.ToString("yyyyMMdd"), (chkExcludeCallCust.Checked ? 1 : 0), txtSearch.Text, 1, Pager.PageSize, false);
}));
}
else
{
DataLayer.SetConnectionString(_country);
ds = LoadData(dtfrom.Value.ToString("yyyyMMdd"), dtto.Value.ToString("yyyyMMdd"), (chkExcludeCallCust.Checked ? 1 : 0), txtSearch.Text, 1, Pager.PageSize, false);
}
if (ds.Tables.Count > 0)
{
if (ds.Tables[0] != null)
{
dtExport = ds.Tables[0];
}
}
if (outlookGrid1.InvokeRequired)
{
outlookGrid1.Invoke(new MethodInvoker(delegate
{
outlookGrid1.BindData(ds, "data");
View = "BoundInvoices";
DataGridViewCellEventArgs evt = new DataGridViewCellEventArgs(2, -1);
object sender = null;
//outlookGrid1_CellClick(sender, evt);
}));
}
else
{
//outlookGrid1.DataSource = ds.Tables[0];
outlookGrid1.BindData(ds, "data");
View = "BoundInvoices";
DataGridViewCellEventArgs evt = new DataGridViewCellEventArgs(2, -1);
object sender = null;
//outlookGrid1_CellClick(sender, evt);
}
if (wfrm.InvokeRequired)
{
wfrm.Invoke(new MethodInvoker(delegate
{
wfrm.Hide();
}));
}
else
{
wfrm.Hide();
}
if (this.InvokeRequired)
{
this.Invoke(new MethodInvoker(delegate {
this.Cursor = Cursors.Default;
btnSearch.Enabled = true;
}));
}
else
{
btnSearch.Enabled = true;
this.Cursor = Cursors.Default;
}
}
在表单加载时,我实例化了一个无边框窗口,例如:
WaitForm wfrm = null;
public Feedback(string country)
{
InitializeComponent();
wfrm = new WaitForm();
}
我还为此窗口设置了更多属性,例如:
startposition = CenterScreen
showinicon=false
showintaskbar=false
formboderstyle=none
WaitForm
仅在我第一次单击搜索按钮时显示 我无法理解WaitForm
如果第二次单击搜索按钮时为什么不显示。
PictureBox
另一个问题是, 有一个WaitForm
已分配动画 GIF 的。第一次WaitForm
显示动画没有播放。为什么我在显示 WinForm 时没有播放动画?
请告诉我我需要在代码中更改什么,以便WaitForm
在我单击搜索按钮时显示。我也想知道如何在WaitForm
's PictureBox
animate 中制作 GIF。