I have developed a WinForms application that uses a Main form and TabControl. On the tab control is several tabs that use controls from a library. I have noticed recently that upon resizing of the application the entire application flickers like crazy.
What have I tried?
I tried adding the below code to the _load event of the form and of one of the controls. I then switched to that control via the tab and tried to resize but no difference the flicker is still really bad.
DoubleBuffered = true;
EDIT 1
I also have WPF controls on one tab. I am curious if that would cause the flickers also.