Hi
I found this problem on the KryptonTreeView, I'm not sure about how to reproduce the problem but it happens suddenly.
On method :
protected override void WndProc(ref Message m)
There is a switch: switch (m.Msg) with some cases, but there is no case when m.Msg it's equal to 8270, so the switch jumps to the case by default, which provokes a NullReferenceException on this line : base.WndProc(ref m);
Displaying the error message: "Object reference not set to an instance of an object."
Any idea about how to fix the issue ?
Maybe just a try catch on default case, or something special needs to be done when the message it's 8270?
Thanks.