Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CurrentDateTimeStripLine Class

Represents a strip line that indicates the current time (DateTime.Now), and automatically updates its position onscreen.

Namespace: DevExpress.Xpf.Gantt

Assembly: DevExpress.Xpf.Gantt.v24.2.dll

NuGet Package: DevExpress.Wpf.Gantt

#Declaration

public sealed class CurrentDateTimeStripLine :
    StripLineBase

#Remarks

#How to Use

Use the GanttView.StripLines property to populate a collection of strip lines displayed within the Gantt area.

<Window ...
    xmlns:dxgn="http://schemas.devexpress.com/winfx/2008/xaml/gantt" />

<dxgn:GanttControl ItemsSource="{Binding Tasks}" >
    <dxgn:GanttControl.View>
        <dxgn:GanttView
            x:Name="view" ... >
            <dxgn:GanttView.StripLines>
                <dxgn:CurrentDateTimeStripLine />
            </dxgn:GanttView.StripLines>
        </dxgn:GanttView>
    </dxgn:GanttControl.View>
</dxgn:GanttControl>
</Window>

wpf Gantt strip lines today line

The Strip Lines (Time Indicators) document describes how to load strip lines from a ViewModel.

Note

The following properties does not affect the CurrentDateTimeStripLine:

See Also