ThemeInfoAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / ThemeInfoAttribute.cs / 1 / ThemeInfoAttribute.cs

                            //---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
//--------------------------------------------------------------------------- 

using System; 
using System.Windows; 
using System.Reflection;
 
namespace System.Windows
{
    /// 
    ///     Specifies where theme dictionaries are stored for types in an assembly. 
    /// 
    [AttributeUsage(AttributeTargets.Assembly)] 
    public sealed class ThemeInfoAttribute : Attribute 
    {
        ///  
        ///     Creates an attribute that defines theme dictionary locations for types in an assembly.
        /// 
        /// The location of theme specific resources.
        /// The location of generic, not theme specific, resources. 
        public ThemeInfoAttribute(ResourceDictionaryLocation themeDictionaryLocation, ResourceDictionaryLocation genericDictionaryLocation)
        { 
            _themeDictionaryLocation = themeDictionaryLocation; 
            _genericDictionaryLocation = genericDictionaryLocation;
        } 

        /// 
        ///     The location of theme specific resources.
        ///  
        public ResourceDictionaryLocation ThemeDictionaryLocation
        { 
            get 
            {
                return _themeDictionaryLocation; 
            }
        }

        ///  
        ///     The location of generic, not theme specific, resources.
        ///  
        public ResourceDictionaryLocation GenericDictionaryLocation 
        {
            get 
            {
                return _genericDictionaryLocation;
            }
        } 

        internal static ThemeInfoAttribute FromAssembly(Assembly assembly) 
        { 
            return Attribute.GetCustomAttribute(assembly, typeof(ThemeInfoAttribute)) as ThemeInfoAttribute;
        } 

        private ResourceDictionaryLocation _themeDictionaryLocation;
        private ResourceDictionaryLocation _genericDictionaryLocation;
    } 
}

// 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