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