Click here to Skip to main content
15,881,413 members
Articles / Desktop Programming / WPF

MPP Viewer

Rate me:
Please Sign up or sign in to vote.
4.75/5 (13 votes)
15 Jun 2011CPOL3 min read 103.4K   4.1K   41  
MPP Viewer is a simple viewer for Microsoft Project files. I works well with 2000/2003/2007 file formats.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;

namespace MppViewer
{
    public static class TreeViewItemProperties
    {
        public static string GetIsRootLevel(DependencyObject obj)
        {
            return (string)obj.GetValue(IsRootLevelProperty);
        }

        public static void SetIsRootLevel(DependencyObject obj, string value)
        {
            obj.SetValue(IsRootLevelProperty, value);
        }

        public static readonly DependencyProperty IsRootLevelProperty =
            DependencyProperty.RegisterAttached(
            "IsRootLevel",
            typeof(string),
            typeof(TreeViewItemProperties),
            new UIPropertyMetadata("false"));
    }
}

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 Code Project Open License (CPOL)


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

Comments and Discussions