示例#1
0
 public void FireChangeSelection() // uccursor requirement
 {
     if (dataGridViewStarList.CurrentCell != null)
     {
         int row = dataGridViewStarList.CurrentCell.RowIndex;
         //System.Diagnostics.Debug.WriteLine("Fire Change Sel row" + row);
         OnTravelSelectionChanged?.Invoke((dataGridViewStarList.Rows[row].Tag as HistoryEntry), discoveryform.history, true);
     }
 }
 public void FireChangeSelection()
 {
     System.Diagnostics.Debug.WriteLine("JG Fire Change Sel");
     if (dataGridViewJournal.CurrentCell != null)
     {
         int row = dataGridViewJournal.CurrentCell.RowIndex;
         OnTravelSelectionChanged?.Invoke(dataGridViewJournal.Rows[row].Tag as HistoryEntry, current_historylist, true);
     }
 }
 public void FireChangeSelection()
 {
     if (dataGridViewJournal.CurrentCell != null)
     {
         int row = dataGridViewJournal.CurrentCell.RowIndex;
         //System.Diagnostics.Debug.WriteLine("Fire Change Sel row" + row);
         OnTravelSelectionChanged?.Invoke(dataGridViewJournal.Rows[row].Cells[JournalHistoryColumns.HistoryTag].Tag as HistoryEntry, current_historylist, true);
     }
 }