Xtragrid Row를 끌어서 이동시키기(행 바꾸기)
Xtragrid Row를 드래그 드롭으로 옮기게 하는 클래스이다. 사용법은 GridControlDragNDropClass 인스턴스를 생성하고 SetGridControlDrag 메서드를 이용하면 됨. #region GridControlDragNDropClass /// /// GridControl Drag에 적용할 Type /// public enum enumSetGridControlDrag { /// /// Drag에 적용하는 이미지를 BitMap으로 사용하여, 크기제한이 없음. /// UsingBitmap, /// /// Drag에 적용하는 이미지를 ImageList를 사용하여 255, 255 크기 제한이 있음. /// UsingImageList, } /// /// 해당 GridControl에 Drag ..