缓解加载显示大量控件时闪烁和线条显示的问题

来源:互联网 发布:淘宝默认确认收货时间 编辑:程序博客网 时间:2024/05/18 02:02
[DllImport("user32.dll")]static extern bool LockWindowUpdate(IntPtr hWndLock); pravate void dosomething(){LockWindowUpdate(panelContainer.Handle); // Clear PanelpanelContainer.Controls.Clear(); // my temporary TextBoxTextBox myT ; for (int lauf=0; lauf < 200; lauf++){    // Create New TextBox    myT = new TextBox();     // Add TextBox to the Panel    panelContainer.Controls.Add(myT);}// redraw the windowLockWindowUpdate(IntPtr.Zero);}

0 0