Completed
Last Updated: 08 Jul 2014 08:43 by ADMIN
ADMIN
Dimitar
Created on: 10 Mar 2014 07:01
Category: StatusStrip
Type: Bug Report
0
FIX. RadStatusStrip - when the SizingGrip property is set to false the user still can resize.
To reproduce:
- Set RadStatusStrip SizingGrip property to false.
- When you move the mouse to the right corner its cursor is changed and you can resize.

Workaround:
- Completely remove the element with the following code:
int lastIndex = this.radStatusStrip1.StatusBarElement.Children.Count;  
this.radStatusStrip1.StatusBarElement.Children.RemoveAt(lastIndex - 1);

0 comments