Click here to Skip to main content
15,885,782 members
Articles / Desktop Programming / WPF

WPF TaskDialog Wrapper and Emulator

Rate me:
Please Sign up or sign in to vote.
4.92/5 (41 votes)
18 Oct 2012CPOL7 min read 187.2K   5.4K   125  
A TaskDialog wrapper class with fallback emulator (for XP and earlier).
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;

[assembly: AssemblyTitle("TaskDialog")]
[assembly: AssemblyDescription("A TaskDialog wrapper and emulator for WPF.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("TaskDialog")]
[assembly: AssemblyCopyright("© Sean A. Hanley 2010")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("bb889d00-23dd-4fdf-967d-10cbbbfb086d")]

[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]

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
Software Developer
United States United States
I'm a C# .NET developer for both Windows and Web applications since 2007, with a background in C/C++. Due to my job responsibilities currently, I've worn many hats. T-SQL in SQL Server, WinForms, WPF, WCF, ASP.NET, JavaScript, CSS, and more.

Comments and Discussions