I've got a RadRibbonForm as my main form. I'd like my users to be able to resize this form - and they can but the border is a single pixel making it nearly impossible to position your mouse over it in order to drag-and-resize.
I've tried creating my own Telerik.WinControls.UI.FormControlBehavior class called "CustomFormControlBehavior" that Inherits Telerik.WinControls.UI.FormControlBehavior with BorderWidth property that looks like this:
Public Overrides ReadOnly Property BorderWidth As Padding
Get
Return New Padding(10)
End Get
End Property
and in my main form's constructor, following InitializeComponent() I've added the following:
Dim Behavior As Telerik.WinControls.UI.FormControlBehavior = New CARMSCustomRibbonFormBehavior()
Me.FormBehavior = Behavior
The above code will not execute!
Can you help me resolve how to change the BorderWidth of my RadRibbonForm? How close was I to the solution!? :)
Kindest regards, all!
-C