Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes
While setting the CreateParams for the Form to avoid flickering in the child controls, The current cell renderer element such as textbox, numeric text box cursors get flicering. Need to avoid those flickering.

Reproduce Steps: 
1. Override the CreateParams of the Form,
2. Set the following 
Code snippet in CreateParams.
protected override CreateParams CreateParams 
 get 
 { 
 CreateParams handleParam = base.CreateParams; handleParam.ExStyle |= 0x02000000; return handleParam; 
 }
 }
 3, Now enter to the edit mode of the cell. 

Observed behavior: you can see that the cursor is gets flickering on the edit mode. 
Expected behavior: Should not have the flickering for the control.