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

Smart WPF Login Overlay (Windows 8 Style)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (23 votes)
3 Dec 2012CPOL12 min read 134.4K   18.1K   76  
Login Overlay for WPF applications with a styling similar to the Windows 8 Login Screen.
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows.Markup;

// Allgemeine Informationen über eine Assembly werden über die folgenden 
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die mit einer Assembly verknüpft sind.
[assembly: AssemblyTitle( "WPFSmartLibrary35Light" )]
[assembly: AssemblyDescription( "WPF Library with many smart functions" )]
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "SoftArcs" )]
[assembly: AssemblyProduct( "WPFSmartLibrary35Light" )]
[assembly: AssemblyCopyright( "Copyright © SoftArcs 2012" )]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]

// --------------------------------------------------------------------------------------------------------------
// ------------------------------   XML-Namespace mapping (in alphabetic order)   -------------------------------
// --------------------------------------------------------------------------------------------------------------
//[assembly: XmlnsDefinition( "http://schemas.softarcs.com/wpfsmartlibrary", "SoftArcs.WPFSmartLibrary.MVVMCommands" )]
//[assembly: XmlnsDefinition( "http://schemas.softarcs.com/wpfsmartlibrary", "SoftArcs.WPFSmartLibrary.MVVMCore" )]
[assembly: XmlnsDefinition( "http://schemas.softarcs.com/wpfsmartlibrary", "SoftArcs.WPFSmartLibrary.SmartUserControls" )]
[assembly: XmlnsDefinition( "http://schemas.softarcs.com/wpfsmartlibrary", "SoftArcs.WPFSmartLibrary.UIClassAttachedProperties" )]
//[assembly: XmlnsDefinition( "http://schemas.softarcs.com/wpfsmartlibrary", "SoftArcs.WPFSmartLibrary.UIClassEnhancements" )]
[assembly: XmlnsDefinition( "http://schemas.softarcs.com/wpfsmartlibrary", "SoftArcs.WPFSmartLibrary.ValueConverter" )]

// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar 
// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von 
// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest.
[assembly: ComVisible( false )]

// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid( "e3efae4b-c6c0-4f02-8240-b9d7a259a45c" )]

// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
//      Hauptversion
//      Nebenversion 
//      Buildnummer
//      Revision
//
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern 
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[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
Architect SoftArcs
Germany Germany
Experience:
More than 20 years with software design, architecture and development. More than 9 years with the .NET Framework.

Preferences:
C#, .NET 2.0, .NET 3.5, .NET 4.0, .NET 4.5, WPF (3, 4 and 4.5), MVVM, XAML, Silverlight, Windows Phone, Windows 8 Apps, ASP.NET, WCF, T-SQL and especially GUI-Development and GUI-Design.

I would say I am a dotNet Developer with a keen affinity for developing and enriching user interfaces.

Comments and Discussions