How can I make my form resize more smoothly?

后端 未结 5 1699
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-31 18:57

When resizing a form with many controls, the form looks bad because of flickering. What are some tips to have a smoother form resizing?

相关标签:
5条回答
  • 2021-01-31 19:37

    I avoid flicker by aligning no more than 1 non-alClient component per parent, always paired with a alClient (e.g. a TPanel) to contain all other components. Group them in panels without borders.

    Say you want to allign three things: alLeft, alTop and alClient for the main view. Dont do this: Form alTop alLeft alClient // your main view

    But instead embed these as follows: Form alTop alClient // panel to avoid flicker alLeft alClient // your main view

    Same story for embedding several alTop elements.

    0 讨论(0)
  • 2021-01-31 19:58

    Try using WM_SETREDRAW (not LockWindowUpdate).

    You might also have a look at DeferWindowPos.

    0 讨论(0)
  • 2021-01-31 19:58

    I've got around this as follows:

    1. In the 'OnResize' event of the form, have a routine to hide all child controls and then start a timer with a tick of about 500ms.
    2. When the timer fires, disable it and then set all child controls to visible.

    By playing around with this activity you get a form that goes blank whilst you are sizing it, but then populates itself neatly when you 'let go'.

    Bri

    0 讨论(0)
  • 2021-01-31 20:00

    Complex forms are often made up of nested panels, and the repaint process may cause flickering. If this is the case with your project there are two easy solutions that might help:

    1. Disable the property FullRepaint on your panels.
    2. Enable the property DoubleBuffered on your form. You won't find this property on the object inspector, so put DoubleBuffered := true; in FormCreate.
    0 讨论(0)
  • 2021-01-31 20:02
    procedure TForm1.WMEnterSizeMove(var Message:TWMMove);
    begin
      Self.DisableAlign;
    end;
    
    procedure TForm1.WMExitSizeMove(var Message:TWMMove);
    begin
      Self.EnableAlign;
    end;
    
    0 讨论(0)
提交回复
热议问题