nineveh.Y
nineveh.Y

Reputation: 167

C# MSAGL- display styles

enter image description here

This is a winform application in C# with MSAGL. I'm trying to change the color of the gray zone to white,and change the font style of the Node, what should I do to set them?

Upvotes: 2

Views: 809

Answers (1)

Reza Aghaei
Reza Aghaei

Reputation: 125197

You can set OutsideAreaBrush property of the viewer to desired brush in load event of your form, for example:

this.gViewer.OutsideAreaBrush = Brushes.White;

Upvotes: 3

Related Questions