Completed
Last Updated: 12 Apr 2016 11:32 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 05 Sep 2013 06:17
Category: Form
Type: Bug Report
1
FIX. RadForm - setting Maximize/Minimize box to false does not allow dragging if initiated from the missing button's position
To reproduce:
Create a RadForm set Maxmize/Minimize box to false. Run it and try to drag the form by clicking on where the buttons used to be.

Workaround:
void MainForm_Load(object sender, EventArgs e)
{
    this.FormElement.TitleBar.MaximizeButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
    this.FormElement.TitleBar.MinimizeButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
}
0 comments