StyleTypedPropertyAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / StyleTypedPropertyAttribute.cs / 1305600 / StyleTypedPropertyAttribute.cs

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

using System; 
 
namespace System.Windows
{ 
    /// 
    ///     This attribute is applied to the class and determine the target type which should be used for the properties of type Style.
    /// The definition inherits to the subclasses or the derived class can redefine the target type for the property already defined in the base class.
    ///  
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
    public sealed class StyleTypedPropertyAttribute : Attribute 
    { 
        /// 
        ///     Default constructor 
        /// 
        public StyleTypedPropertyAttribute()
        {
        } 

        ///  
        ///     The property name of type Style 
        /// 
        public string Property 
        {
            get { return _property; }
            set { _property = value; }
        } 

        ///  
        ///     Target type of the Style that should be used for the Property 
        /// 
        public Type StyleTargetType 
        {
            get { return _styleTargetType; }
            set { _styleTargetType = value; }
        } 

        private string _property; 
        private Type _styleTargetType; 
    }
} 

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