■ TreeListView 클래스에서 드래그 & 드롭을 사용하는 방법을 보여준다.
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" Width="800" Height="600" Title="TreeListView 클래스 : 드래그 & 드롭 사용하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <dxg:TreeListControl x:Name="treeListControl" SelectionMode="Row"> <dxg:TreeListControl.Columns> <dxg:TreeListColumn FieldName="Name" ReadOnly="True" /> <dxg:TreeListColumn FieldName="Department" ReadOnly="True" /> <dxg:TreeListColumn FieldName="Position" ReadOnly="True" /> </dxg:TreeListControl.Columns> <dxg:TreeListControl.View> <dxg:TreeListView x:Name="treeListView" KeyFieldName="ID" ParentFieldName="ParentID" EditorShowMode="MouseUpFocused" AutoExpandAllNodes="True" /> </dxg:TreeListControl.View> <i:Interaction.Behaviors> <dxg:TreeListDragDropManager AllowDrag="True" AllowDrop="True" /> </i:Interaction.Behaviors> </dxg:TreeListControl> </Grid> </Window> |