Customize DatabaseSchemaTree Entries
Hello,
is it possible to customize the appearance of items in the DatabaseSchemaTree like you can do with a DataSourceObject or a DataSourceFieldList?
Best regards
Christian Sack
is it possible to customize the appearance of items in the DatabaseSchemaTree like you can do with a DataSourceObject or a DataSourceFieldList?
Best regards
Christian Sack
Now you can handle the custom draw event in Database Schema Tree.
In the form constructor add the following:
((TreeView) queryBuilder1.DatabaseSchemaTree).DrawMode = TreeViewDrawMode.OwnerDrawText;
{
args.DrawDefault = false;
args.Graphics.FillRectangle(Brushes.Red, args.Bounds);
};