Completed
Last Updated: 03 Sep 2012 03:19 by ADMIN
ADMIN
Boryana
Created on: 03 Sep 2012 03:19
Category: Buttons
Type: Bug Report
1
FIX. - RadDropDownButton - The button does not stretch to fit its content when AutoSize is set to true
Setting RadDropDownButtonElement MinSize property does not make the RadDropDownButton control stretch to fit its element.

Currently, the issue can be avoided through adding the following three lines of code:
            this.radDropDownButton1.RootElement.StretchHorizontally = false;
            this.radDropDownButton1.RootElement.StretchVertically = false;
            this.radDropDownButton1.RootElement.SaveCurrentStretchModeAsDefault();
0 comments