markus / KCOM / Resources / DragAndDropListBoxStyle.xaml @ a1142a6b
이력 | 보기 | 이력해설 | 다운로드 (774 Bytes)
1 |
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
---|---|
2 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
3 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
4 |
xmlns:local="clr-namespace:KCOM.Resources"> |
5 |
<Style x:Key="DraggableListBox" TargetType="ListBox"> |
6 |
<Setter Property="telerik:DragDropManager.AllowCapturedDrag" Value="True" /> |
7 |
</Style>
|
8 |
<Style TargetType="telerik:RadListBoxItem" BasedOn="{StaticResource RadListBoxItemStyle}"> |
9 |
<Setter Property="telerik:DragDropManager.AllowCapturedDrag" Value="True" /> |
10 |
<Setter Property="telerik:TouchManager.DragStartTrigger" Value="TapHoldAndMove"/> |
11 |
</Style>
|
12 |
</ResourceDictionary>
|