TreeView onPaint problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am writing a small program just to test mirroring on TreeView control in C#. Along with that i wanted to add some more functionality in its "onPaint" override. But this override is not called. As i read over few websites.. this is a bug in TreeView in .Net. Is there any proper work around?
 
* =?Utf-8?B?QXRh?= said:
I am writing a small program just to test mirroring on TreeView
control in C#. Along with that i wanted to add some more functionality
in its "onPaint" override. But this override is not called. As i read
over few websites.. this is a bug in TreeView in .Net.

It's not a bug IMO, it's not called because the control is not drawn by
managed code, its drawn by Windows.
 
Back
Top