如何在Windows窗体中禁用更新表单?

时间:2008-09-24 12:37:33

标签: .net winforms

在复杂的更新过程中,我可能希望一次显示所有更改。我知道有一种方法可以让我这样做,但它是什么?

6 个答案:

答案 0 :(得分:14)

我认为这个.SpendpendLayout()& ResumeLayout()应该这样做

答案 1 :(得分:14)

我没有找到SuspendLayout()ResumeLayout()做你想要的。 LockWindowsUpdate() mentioned by moobaa可以解决问题。但是,LockWindowUpdate一次仅适用于一个窗口。

你也可以试试这个:

using System;
using System.Windows.Forms;
using Microsoft.Win32;
using System.Runtime.InteropServices;

public partial class Form1 : Form
{
    [DllImport("user32.dll")]
    public static extern int SendMessage(IntPtr hWnd, Int32 wMsg, bool wParam, Int32 lParam);
    private const int WM_SETREDRAW = 11; 

    public Form1()
    {
      InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
      SendMessage(this.Handle, WM_SETREDRAW, false, 0);

      // Do your thingies here
      SendMessage(this.Handle, WM_SETREDRAW, true, 0);

      this.Refresh();
    }
}

答案 2 :(得分:6)

您可以使用旧的Win32 LockWindowUpdate功能:

[DllImport("user32.dll")]
private static extern long LockWindowUpdate(long Handle);

try {
    // Lock Window...
    LockWindowUpdate(frm.Handle);
    // Perform your painting / updates...
} 
finally {
    // Release the lock...
    LockWindowUpdate(0);
}

答案 3 :(得分:4)

大多数复杂的第三方Windows窗体组件具有BeginUpdateEndUpdate方法或类似方法,以执行一批更新,然后然后绘制控件。在表单级别,没有这样的东西,但您可以通过启用Double buffering来感兴趣。

答案 4 :(得分:1)

您可以在更新属性时在窗体或控件中使用SuspendLayout和ResumeLayout方法。如果要将数据绑定到控件,则可以使用BeginUpdate和EndUpdate方法。

答案 5 :(得分:0)

如果更新涉及控件和布局的更改,SuspendLayout将有助于提高性能: MSDN