IBufferedControl Interface

Provides simple double buffering (anti flickering) functionality for a Windows Forms Control, such for example a TextBox.

Definition

Namespace: DevCase.UI.Interfaces
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public interface IBufferedControl

Properties

CreateParams Gets the required creation parameters when the control handle is created.
DoubleBuffered Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.
PreventFlickering Gets or sets a value that indicates whether the control should avoid unwanted flickering effects.

If , this will avoid any flickering effect on the control, however, it will also have a negative impact by slowing down the responsiveness of the control about to 30% slower.

This negative impact doesn't affect to the performance of the application itself, just to the performance of this control.

See Also