DisableDpiAwarenessAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Media / DisableDpiAwarenessAttribute.cs / 1305600 / DisableDpiAwarenessAttribute.cs

                            //------------------------------------------------------------------------ 
//
//  Microsoft Windows Client Platform
//  Copyright (C) Microsoft Corporation, 2006
// 
//  File:      DisableDpiAwarenessAttribute.cs
// 
//  By default, WPF application is Dpi-Aware when the UI layout is calculated. 
//  But if in any case, an application wants to host WPF control and doesn't
//  want to support Dpi aware,  the way to achieve it is to add below attribute 
//  value in its application assembly.
//
//     [assembly:System.Windows.Media.DisableDpiAwareness]
// 
//  Created:   06/01/2006 WeibZ
// 
//----------------------------------------------------------------------- 

using System; 

namespace System.Windows.Media
{
    ///  
    /// DisableDpiAwarenessAttribute tells to disable DpiAwareness in this
    /// application for WPF UI elements. 
    ///  
    [AttributeUsage(AttributeTargets.Assembly, AllowMultiple=false)]
    public sealed class DisableDpiAwarenessAttribute: Attribute 
    {
        /// 
        /// Ctor of DisableDpiAwareness
        ///  
        public DisableDpiAwarenessAttribute( )
        { 
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------ 
//
//  Microsoft Windows Client Platform
//  Copyright (C) Microsoft Corporation, 2006
// 
//  File:      DisableDpiAwarenessAttribute.cs
// 
//  By default, WPF application is Dpi-Aware when the UI layout is calculated. 
//  But if in any case, an application wants to host WPF control and doesn't
//  want to support Dpi aware,  the way to achieve it is to add below attribute 
//  value in its application assembly.
//
//     [assembly:System.Windows.Media.DisableDpiAwareness]
// 
//  Created:   06/01/2006 WeibZ
// 
//----------------------------------------------------------------------- 

using System; 

namespace System.Windows.Media
{
    ///  
    /// DisableDpiAwarenessAttribute tells to disable DpiAwareness in this
    /// application for WPF UI elements. 
    ///  
    [AttributeUsage(AttributeTargets.Assembly, AllowMultiple=false)]
    public sealed class DisableDpiAwarenessAttribute: Attribute 
    {
        /// 
        /// Ctor of DisableDpiAwareness
        ///  
        public DisableDpiAwarenessAttribute( )
        { 
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK