Click here to Skip to main content
15,886,593 members
Articles / Desktop Programming / WPF

Creating an Outlook Calendar Using WPF (Part 2)

Rate me:
Please Sign up or sign in to vote.
4.55/5 (21 votes)
11 Nov 2008CPOL2 min read 119.1K   7.2K   76  
Part 2 in a series on how to create a replica of the Outlook Calendar (and Appointments) using WPF.
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using System;
using System.Resources;
using System.Security;
using System.Windows.Markup;

[assembly: AssemblyTitle("RudiGrobler.Controls")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Impilo Software")]
[assembly: AssemblyProduct("RudiGrobler.Controls")]
[assembly: AssemblyCopyright("Copyright © Impilo Software 2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("5f1fef62-2eb9-4d65-aba9-dd24f109e265")]


[assembly: SecurityCritical]
[assembly: AllowPartiallyTrustedCallers]
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: ThemeInfo(
    ResourceDictionaryLocation.SourceAssembly, 
    ResourceDictionaryLocation.SourceAssembly 
)]
[assembly: XmlnsDefinition("http://schemas.rudigrobler.com/wpf/2008", "RudiGrobler.Controls")]



[assembly: AssemblyVersion("1.0.0.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
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions