AmbientProperties.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / AmbientProperties.cs / 1 / AmbientProperties.cs

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

/* 
* Copyright (c) 1999, Microsoft Corporation. All Rights Reserved. 
* Information Contained Herein is Proprietary and Confidential.
*/ 
namespace System.Windows.Forms {
    using System;
    using System.ComponentModel;
    using System.Diagnostics; 
    using System.Windows.Forms.Design;
    using System.ComponentModel.Design; 
    using System.Drawing; 
    using Microsoft.Win32;
 
    /// 
    /// 
    ///    
    ///       Provides ambient property values to top-level controls. 
    ///    
    ///  
    // 
    // NOTE: internally, this class does double duty as storage for Control's inherited properties.
    public sealed class AmbientProperties { 

        // Public ambient properties
        private Color    backColor;
        private Color    foreColor; 
        private Cursor   cursor;
        private Font     font; 
 
        /// 
        ///  
        ///    
        ///       Gets the ambient BackColor, or Color.Empty if there is none.
        ///    
        ///  
        public Color BackColor {
            get { 
                return backColor; 
            }
            set { 
                backColor = value;
            }
        }
 
        /// 
        ///  
        ///     
        ///       Gets the ambient BackColor, or null if there is none.
        ///     
        /// 
        public Cursor Cursor {
            get {
                return cursor; 
            }
            set { 
                cursor = value; 
            }
        } 

        /// 
        /// 
        ///     
        ///       Gets the ambient Font, or null if there is none.
        ///     
        ///  
        public Font Font {
            get { 
                return font;
            }
            set {
                font = value; 
            }
        } 
 
        /// 
        ///  
        ///    
        ///       Gets the ambient ForeColor, or Color.Empty if there is none.
        ///    
        ///  
        public Color ForeColor {
            get { 
                return foreColor; 
            }
            set { 
                foreColor = value;
            }
        }
    } 
}
 

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

/* 
* Copyright (c) 1999, Microsoft Corporation. All Rights Reserved. 
* Information Contained Herein is Proprietary and Confidential.
*/ 
namespace System.Windows.Forms {
    using System;
    using System.ComponentModel;
    using System.Diagnostics; 
    using System.Windows.Forms.Design;
    using System.ComponentModel.Design; 
    using System.Drawing; 
    using Microsoft.Win32;
 
    /// 
    /// 
    ///    
    ///       Provides ambient property values to top-level controls. 
    ///    
    ///  
    // 
    // NOTE: internally, this class does double duty as storage for Control's inherited properties.
    public sealed class AmbientProperties { 

        // Public ambient properties
        private Color    backColor;
        private Color    foreColor; 
        private Cursor   cursor;
        private Font     font; 
 
        /// 
        ///  
        ///    
        ///       Gets the ambient BackColor, or Color.Empty if there is none.
        ///    
        ///  
        public Color BackColor {
            get { 
                return backColor; 
            }
            set { 
                backColor = value;
            }
        }
 
        /// 
        ///  
        ///     
        ///       Gets the ambient BackColor, or null if there is none.
        ///     
        /// 
        public Cursor Cursor {
            get {
                return cursor; 
            }
            set { 
                cursor = value; 
            }
        } 

        /// 
        /// 
        ///     
        ///       Gets the ambient Font, or null if there is none.
        ///     
        ///  
        public Font Font {
            get { 
                return font;
            }
            set {
                font = value; 
            }
        } 
 
        /// 
        ///  
        ///    
        ///       Gets the ambient ForeColor, or Color.Empty if there is none.
        ///    
        ///  
        public Color ForeColor {
            get { 
                return foreColor; 
            }
            set { 
                foreColor = value;
            }
        }
    } 
}
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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