■ TrackBarEdit 엘리먼트를 사용하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<Grid xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"> <dxe:TrackBarEdit x:Name="trackBarEdit" Width="150" Height="30" Minimum="-200" Maximum="200" TickPlacement="Both" TickFrequency="50" ShowNullTextForEmptyValue="False" SelectionStart="-45" SelectionEnd="40"> <dxe:TrackBarEdit.StyleSettings> <dxe:TrackBarRangeStyleSettings/> </dxe:TrackBarEdit.StyleSettings> </dxe:TrackBarEdit> </Grid> |