Reputation: 1931
I have designed a Devexpress winform with many Devexpress controls. When it is loading,the form gets flickering. Is there any solution,for loading of my form smoothly?
Upvotes: 0
Views: 690
Reputation: 91
This question is very old, but I answer it for someone else.
If the form is a general form(WinForm) rather than a form in Devexpress, it flashes when the entire form is redrawn if you used the Devexpress control in that form.
Make sure that the form you are using is XtraForm, and if it is not XtraForm, you must recreate it as XtraForm.
If you use XtraForm and it blinks Follow @Ronaldk6's comments.
Upvotes: 0
Reputation: 21
Have you tried using a DataLayoutControl and set the methods "BeginUpdate" and "EndUpdate". This should help against the flickering.
Upvotes: 1