728x90
반응형
728x170
▶ MainWindow.xaml
<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="수동으로 드래그 & 드롭 사용하기"
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"
ScrollSpacing="50"
ScrollSpeed="1"
Drop="treeListDragDropManager_Drop" />
</i:Interaction.Behaviors>
</dxg:TreeListControl>
</Grid>
</Window>
728x90
▶ MainWindow.xaml.cs
using System.Windows;
using DevExpress.Xpf.Grid;
using DevExpress.Xpf.Grid.DragDrop;
namespace TestProject
{
/// <summary>
/// 메인 윈도우
/// </summary>
public partial class MainWindow : Window
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainWindow()
/// <summary>
/// 생성자
/// </summary>
public MainWindow()
{
InitializeComponent();
this.treeListControl.ItemsSource = new EmployeeList().GetData();
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 트리 리스트 드래그/드롭 관리자 드롭시 처리하기 - treeListDragDropManager_Drop(sender, e)
/// <summary>
/// 트리 리스트 드래그/드롭 관리자 드롭시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void treeListDragDropManager_Drop(object sender, TreeListDropEventArgs e)
{
if(e.TargetNode != null)
{
foreach(TreeListNode treeListNode in e.DraggedRows)
{
(treeListNode.Content as Employee).Position = (e.TargetNode.Content as Employee).Position;
(treeListNode.Content as Employee).Department = (e.TargetNode.Content as Employee).Department;
}
}
if(e.DropTargetType == DropTargetType.InsertRowsIntoNode)
{
foreach(TreeListNode treeListNode in e.DraggedRows)
{
(treeListNode.Content as Employee).Position = "";
}
}
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'DevExpress > WPF' 카테고리의 다른 글
[DEVEXPRESS/WPF] GridControl 클래스 : 커스텀 컬럼 선택자 생성하기 (0) | 2018.03.05 |
---|---|
[DEVEXPRESS/WPF] GridControl 클래스 : 행 선택 구현하기 (0) | 2018.03.05 |
[DEVEXPRESS/WPF] GridControl 클래스 : 커스텀 로직에 근거한 템플리트 선택하기 (0) | 2018.03.05 |
[DEVEXPRESS/WPF] GridControl 클래스 : 조건부 스타일 적용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] GridControl 클래스 : 포커스 데이터 행과 포커스 셀의 모양 변경하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] TreeListControl 클래스 : 수동으로 드래그 & 드롭 사용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] TreeListView 클래스 : 드래그 & 드롭 사용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] GridControl 클래스 : TableView에서 드래그 & 드롭 사용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] 편집 셀 간 커스텀 네비게이션 구현하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] 행 더블 클릭 처리하기 (0) | 2018.03.03 |
[DEVEXPRESS/WPF] Per-Pixel 스크롤을 위한 커스텀 스크롤 애니메이션 구현하기 (0) | 2018.03.03 |
댓글을 달아 주세요