Drag Drop Row behavior on WPF DataGrid
问题 I am trying to make an attached behavior to reorder rows bby doing Drag & Drop I found some solution (On Stackoverflow and by googling) and using them i am trying to make the behavior... I took the example from Hordcodenet website (i dont have the link now) Code public static class DragDropRowBehavior { private static DataGrid dataGrid; private static Popup popup; private static bool enable; private static object draggedItem; public static object DraggedItem { get { return DragDropRowBehavior