1 type derived from ParallelTimeline
PresentationFramework (1)
src\Framework\System\Windows\Media\Animation\Storyboard.cs (1)
30public class Storyboard : ParallelTimeline
4 instantiations of ParallelTimeline
PresentationCore (2)
Core\CSharp\System\Windows\Media\Animation\Generated\ParallelTimeline.cs (1)
112return new ParallelTimeline();
Core\CSharp\System\Windows\Media\Animation\TimeManager.cs (1)
84ParallelTimeline timeManagerTimeline = new ParallelTimeline(new TimeSpan(0), Duration.Forever);
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7300bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.ParallelTimeline(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1438case KnownElements.ParallelTimeline: o = new System.Windows.Media.Animation.ParallelTimeline(); break;
17 references to ParallelTimeline
PresentationCore (11)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (2)
3186Debug.Assert(CanSlip || _timeline is ParallelTimeline && ((ParallelTimeline)_timeline).SlipBehavior == SlipBehavior.Slip);
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (2)
125if (_timeline is ParallelTimeline && 126((ParallelTimeline)_timeline).SlipBehavior == SlipBehavior.Slip)
Core\CSharp\System\Windows\Media\Animation\Generated\ParallelTimeline.cs (4)
64public new ParallelTimeline Clone() 66return (ParallelTimeline)base.Clone(); 73public new ParallelTimeline CloneCurrentValue() 75return (ParallelTimeline)base.CloneCurrentValue();
Core\CSharp\System\Windows\Media\Animation\ParallelTimeline.cs (2)
157typeof(ParallelTimeline), 188((ParallelTimeline)d).PropertyChanged(e.Property);
Core\CSharp\System\Windows\Media\Animation\TimeManager.cs (1)
84ParallelTimeline timeManagerTimeline = new ParallelTimeline(new TimeSpan(0), Duration.Forever);
PresentationFramework (6)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
531case 439: t = () => typeof(ParallelTimeline); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5321Type type = typeof(System.Windows.Media.Animation.ParallelTimeline); 5322DependencyProperty dp = System.Windows.Media.Animation.ParallelTimeline.ChildrenProperty; 5324this.GetXamlType(typeof(System.Windows.Media.Animation.ParallelTimeline)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7298typeof(System.Windows.Media.Animation.ParallelTimeline),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5983case KnownElements.ParallelTimeline: t = typeof(System.Windows.Media.Animation.ParallelTimeline); break;