private void buttonDown_Click(object sender, EventArgs e)
 {
     if (dataGridViewEDL.SelectedRows.Count == 1 && dataGridViewEDL.SelectedRows[0].Index < TimeCodeList.Count - 1)
     {
         int index = dataGridViewEDL.SelectedRows[0].Index;
         ExplorerEDLEntryInOut backup = TimeCodeList[index + 1];
         TimeCodeList[index + 1] = TimeCodeList[index];
         TimeCodeList[index]     = backup;
         dataGridViewEDL.ClearSelection();
         dataGridViewEDL.Rows[index + 1].Selected = true;
         OnChanged(EventArgs.Empty);
     }
 }
Example #2
0
 public void AddEDLEntry(ExplorerEDLEntryInOut entry)
 {
     TimeCodeList.Add(entry);
     OnChanged(EventArgs.Empty);
 }
Example #3
0
 public void AddEDLEntry(ExplorerEDLEntryInOut entry)
 {
     myEDL.AddEDLEntry(entry);
 }
Example #4
0
 public void AddEDLEntry(ExplorerEDLEntryInOut entry)
 {
     TimeCodeList.Add(entry);
     OnChanged(EventArgs.Empty);
 }
Example #5
0
 public void AddEDLEntry(ExplorerEDLEntryInOut entry)
 {
     myEDL.AddEDLEntry(entry);
 }