RadGridView2 Telerik RadGridView drag and drop 할 때 row index 확인 방법 Telerik 예제를 보고 GridView의 Drag and drop 테스트 프로그램을 개발하는 중에 drop을 할 때 row index 찾는 방법을 알 수가 없어서 고생을 했다. 검색을 해 보다가 찾은 방법을 기록으로 남긴다. 나중에 또 이용을 할 때 도움이 되길 바라면서 말이다. drop 함수의 코드이다. private void gridPoint_ProcessDragDrop(object sender, RadDropEventArgs e) { SnapshotDragItem draggedSnapshot = e.DragInstance as SnapshotDragItem; if (draggedSnapshot == null) { return; } GridDataRowElement rowElement = drag.. 2022. 6. 27. Hierarchical RadGridView Example https://docs.telerik.com/devtools/wpf/controls/radgridview/hierarchical-gridview/basic-hierarchies WPF DataGrid | Basic Hierarchies | Telerik UI for WPF Controls / RadGridView / Hierarchical GridView RadGridView allows you to display hierarchical data in the form of nested grid views. To do so you have to define a table definition for each subset of data you want to display. Such a definition ca.. 2021. 9. 2. 이전 1 다음