コード例 #1
0
 private void MovePublicationDownInResume()
 {
     if (SelectedInPublication == null)
     {
         return;
     }
     try
     {
         int currentIndex = InPublications.IndexOf(SelectedInPublication);
         InPublications.Move(currentIndex, currentIndex + 1);
         NotifyPropertyChanged();
     }
     catch (Exception e)
     {
         ls.Log(e, "Exception");
     }
 }