Hello.
I'm just evaluation user and testing to apply SyntaxEditor to our project.
but, SyntaxEditor doesen't show at first loading.
We applied following code to resolve flickering on WinForm
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x02000000; // WS_EX_COMPOSITED
return cp;
}
}
if I remove above code, SyntaxEditor works well.
However, We can't remove it.
How can I solve this problem?
Thanks.