Posted 19 July 2019, 9:12 am EST
Hi,
to avoid flickering on my very huge forms, I use WS_EX_COMPOSITED (double buffer only does not help).
public class MyPanel : Panel {
protected override CreateParams CreateParams {
get {
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x02000000; // WS_EX_COMPOSITED
return cp;
}
}
}
I also need to use the C1SpellChecker to validate and correct input to TextBoxes.
But the C1SpellChecker does not work, if WS_EX_COMPOSITED is enabled. Misspelled words are no longer underlined than.
What could I do to make both work together?