Beispiel #1
0
 internal void DeleteSelectedChildren()
 {
     foreach (TimelineTrackWrapper wrapper in this.timelineTrackMap.Keys)
     {
         TimelineTrackControl control = this.timelineTrackMap[wrapper];
         control.DeleteSelectedChildren();
         if (control.IsSelected)
         {
             control.Delete();
         }
     }
 }
Beispiel #2
0
 internal void DeleteSelectedChildren()
 {
     foreach (TimelineTrackWrapper current in this.timelineTrackMap.Keys)
     {
         TimelineTrackControl timelineTrackControl = this.timelineTrackMap[current];
         timelineTrackControl.DeleteSelectedChildren();
         if (timelineTrackControl.IsSelected)
         {
             timelineTrackControl.Delete();
         }
     }
 }