Completed
Last Updated: 20 Mar 2013 06:35 by ADMIN
ADMIN
Anton
Created on: 20 Mar 2013 06:35
Category:
Type: Bug Report
1
FIX. RadTrackBarElement - has incorrect behavior when the AutoSize property is false.
RadTrackBarElement - has incorrect behavior when AutoSize property is false. If you set value to be equals to Maximum the thumb will be go out of the TrackBar's rectangle.

Workaround:
Turn off auto size and manually set the desired size of the element. For example:

this.radTrackBarElement1.AutoSize = false;
this.radTrackBarElement1.Size = new System.Drawing.Size(100,20);
0 comments