Xceed Toolkit Plus for WPF v4.6 Documentation
AnimatedTimelinePanel Class
Members  Example 


Xceed.Wpf.Toolkit Assembly > Xceed.Wpf.Toolkit.Panels Namespace : AnimatedTimelinePanel Class
Defines an area where items are positioned on a timeline.
Syntax
'Declaration
 
<LocalizabilityAttribute(LocalizationCategory.Ignore)>
<ContentPropertyAttribute("Children")>
<StyleTypedPropertyAttribute(Property="FocusVisualStyle", StyleTargetType=System.Windows.Controls.Control)>
<XmlLangPropertyAttribute("Language")>
<UsableDuringInitializationAttribute(True)>
<RuntimeNamePropertyAttribute("Name")>
<UidPropertyAttribute("Uid")>
<TypeDescriptionProviderAttribute(MS.Internal.ComponentModel.DependencyObjectProvider)>
<NameScopePropertyAttribute("NameScope", System.Windows.NameScope)>
Public Class AnimatedTimelinePanel 
   Inherits AnimationPanel
'Usage
 
Dim instance As AnimatedTimelinePanel
[Localizability(LocalizationCategory.Ignore)]
[ContentProperty("Children")]
[StyleTypedProperty(Property="FocusVisualStyle", StyleTargetType=System.Windows.Controls.Control)]
[XmlLangProperty("Language")]
[UsableDuringInitialization(true)]
[RuntimeNameProperty("Name")]
[UidProperty("Uid")]
[TypeDescriptionProvider(MS.Internal.ComponentModel.DependencyObjectProvider)]
[NameScopeProperty("NameScope", System.Windows.NameScope)]
public class AnimatedTimelinePanel : AnimationPanel 
Example
This example uses AnimatedTimelinePanel to draw several images along a timeline.
<Window x:Class="AnimatedTimelinePanelSample.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
        Title="AnimatedTimelinePanelSample">
  <Grid>
    <xctk:AnimatedTimelinePanel BeginDate="01/01/2007"
                                      EndDate="12/31/2007">

      <Image Width="300"
            xctk:AnimatedTimelinePanel.Date="02/15/2007"
            Source="C:\Windows\Web\Wallpaper\Theme2\img8.jpg" />

      <Image Width="300"
            xctk:AnimatedTimelinePanel.Date="06/16/2007"
            Source="C:\Windows\Web\Wallpaper\Theme2\img8.jpg" />

      <Image Width="300"
            xctk:AnimatedTimelinePanel.Date="11/29/2007"
            Source="C:\Windows\Web\Wallpaper\Theme2\img8.jpg" />

    </xctk:AnimatedTimelinePanel>
  </Grid>
</Window>
Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         System.Windows.Media.Visual
            System.Windows.UIElement
               System.Windows.FrameworkElement
                  System.Windows.Controls.Panel
                     Xceed.Wpf.Toolkit.Panels.PanelBase
                        Xceed.Wpf.Toolkit.Panels.AnimationPanel
                           Xceed.Wpf.Toolkit.Panels.AnimatedTimelinePanel

Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnimatedTimelinePanel Members
Xceed.Wpf.Toolkit.Panels Namespace