private void NaviBoxEvent_ItemDrag(object sender, ItemDragEventArgs e)
 {
     NavigatorBoxControl.SelectionPath = CurrentDirectoryPath + NaviBox.SelectedItems[0].Text;
     NaviBox.DoDragDrop(NaviBox.SelectedItems, DragDropEffects.Move);
 }