1

我的主窗体有一个按钮。单击按钮时,我会填充一个网格。这是我的按钮点击例程

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 PictureBoxanimate 中制作 GIF。

4

1 回答 1

1

启动一个线程并将所有内容都调用回 GUI 线程完全是胡说八道。DoEvents 是代码异味的指标。将您的调用捆绑为调用创建一个大开销

将您的代码更改为以下内容:

   private void btnSearch_Click(object sender, EventArgs e)
    {
        this.btnSearch.Enabled = false;
        this.Cursor = Cursors.WaitCursor;
        this.wfrm.Show();

        Thread t = new Thread(this.Search);
        t.Start();
    }

    private void Search()
    {
        while (isWorking)
        {
            DoHeavyWork();
            this.Invoke(new Action(ReportToWaitForm);
        }

        this.Invoke(new Action(() =>
            {
                this.btnSearch.Enabled = true;
                this.Cursor = Cursors.Default;
                this.wfrm.Hide();
            }));
    }
于 2013-07-30T10:28:34.567 回答