jwilson314
jwilson314

Reputation: 3

Nevron DockPanel - resize grip handles

Nevron's dock panel grip handles are only a few pixels wide when used on a 4k monitor. This makes resizing a panel tedious to get the mouse exactly over the panel border so the grip handles show. Is there a setting to increase the grip handle size?

Writing my own code in the MouseMove event won't fire due to other controls in the dock panel.

Upvotes: 0

Views: 30

Answers (1)

Angel.Chorbadzhiev
Angel.Chorbadzhiev

Reputation: 480

The NDockManager object has a property called SplitterStyle. You can set the size of the splitter style to some int value which will increase the width of the splitter to the desired size:

m_DockManager.SplitterStyle.Size = mySplitterWidth;

Upvotes: 0

Related Questions