Beispiel #1
0
 private void grdOverdue_MouseDoubleClick(object sender, MouseButtonEventArgs e)
 {
     try
     {
         var item = grdOverdue.SelectedItem as OverdueNote;
         if (item == null)
         {
             return;
         }
         var note = PNStatic.Notes.Note(item.Id);
         if (note != null)
         {
             PNNotesOperations.AdjustNoteSchedule(note, this);
         }
     }
     catch (Exception ex)
     {
         PNStatic.LogException(ex);
     }
 }