Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7076127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:15:39+00:00 2026-05-28T06:15:39+00:00

I have a TableLayoutPanel which holds a dynamic number of controls inside a SplitterPanel.

  • 0

I have a TableLayoutPanel which holds a dynamic number of controls inside a SplitterPanel. A user may want to resize the panel to fit these Controls to avoid use of a scroll bar. This creates jitter on the container resize as well as the controls within the container. Sometimes the parent container lags significantly behind movement of the mouse during resize (up to a 3 second lag).

Is there any way to prevent redrawing of Controls during a parent container resize, such as hiding all elements during resize or halting a resize event which occuring during a mousedrag, firing only on an onMouseUp event?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:15:40+00:00Added an answer on May 28, 2026 at 6:15 am

    As Hans commented, SuspendLayout and ResumeLayout work well in this situation, along with Suspending the drawing of the control for the container:

    public static class Win32 {
    
      public const int WM_SETREDRAW = 0x0b;
    
      [DllImport("user32.dll")]
      public static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
    
      public static void SuspendPainting(IntPtr hWnd) {
        SendMessage(hWnd, WM_SETREDRAW, (IntPtr)0, IntPtr.Zero);
      }
    
      public static void ResumePainting(IntPtr hWnd) {
        SendMessage(hWnd, WM_SETREDRAW, (IntPtr)1, IntPtr.Zero);
      }
    }
    

    Then from you resize events:

    private void Form1_ResizeBegin(object sender, EventArgs e) {
      tableLayoutPanel1.SuspendLayout();
    }
    
    private void Form1_ResizeEnd(object sender, EventArgs e) {
      Win32.SuspendPainting(tableLayoutPanel1.Handle);
      tableLayoutPanel1.ResumeLayout();
      Win32.ResumePainting(tableLayoutPanel1.Handle);
      this.Refresh();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have added controls dynamically on runtime inside the rows of a tableLayoutpanel ,
I have a series of nested TableLayoutPanel controls which each of them contains lots
I have a WinForms gui application which has a number of areas to it
I have a controls library which I've added a .resx file to (ImageResources.resx). It
I'm making some controls which all have to share the same look and some
I have a TableLayoutPanel with 3 columns and 1 row: (Remove button, User Control,
I have a TableLayoutPanel where each cell contains a single panel. I would like
I have a TableLayoutPanel to which I add rows dynamically. Each row has an
I generate controls for a TableLayoutPanel dynamically. I have a delete button in each
In VS2010, targeting Framework 4.0, I have a UserControl which contains a TableLayoutPanel with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.