Click here to Skip to main content
15,893,161 members
Articles / Desktop Programming / WPF

WPF Timeline Control - Part I

Rate me:
Please Sign up or sign in to vote.
4.88/5 (37 votes)
21 Aug 2011MIT7 min read 126.5K   8.6K   97  
Overview of the controls to implement an interactive timeline control, specifically designed to let you edit items start and end times. Everything is designed to work with the MVVM pattern allowing you to use binding in your XAML to update your data objects, etc.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace GongSolutions.Wpf.DragDrop
{
    public class DropTargetAdorners
    {
        public static Type Highlight
        {
            get { return typeof(DropTargetHighlightAdorner); }
        }

        public static Type Insert
        {
            get { return typeof(DropTargetInsertionAdorner); }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions