ComponentGlyph.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / Behavior / ComponentGlyph.cs / 1 / ComponentGlyph.cs

                            namespace System.Windows.Forms.Design.Behavior { 
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.ComponentModel.Design; 
    using System.Design;
    using System.Diagnostics; 
    using System.Drawing; 
    using System.Drawing.Drawing2D;
    using System.Windows.Forms.Design; 

    /// 
    /// 
    ///     The ComponentGlyph class simply contains a pointer back 
    ///     to it's related Component.  This can be used to trace
    ///     Glyphs (during drag operations or otherwise) back to 
    ///     their component. 
    /// 
    public class ComponentGlyph : Glyph { 

        private IComponent relatedComponent;//ptr back to the component

        ///  
        /// 
        ///     Standard constructor. 
        ///  
        public ComponentGlyph(IComponent relatedComponent, Behavior behavior) : base(behavior) {
            this.relatedComponent = relatedComponent; 
        }

        public ComponentGlyph(IComponent relatedComponent) : base(null) {
            this.relatedComponent = relatedComponent; 
        }
 
        ///  
        /// 
        ///     Returns the Component this Glyph is related to. 
        /// 
        public IComponent RelatedComponent {
            get {
                return relatedComponent; 
            }
        } 
 
        /// 
        ///  
        ///     Overrides GetHitTest - this implementation does nothing.
        /// 
        public override Cursor GetHitTest(Point p) {
            return null; 
        }
 
        ///  
        /// 
        ///     Overrides Glyph::Paint - this implementation does nothing. 
        /// 
        public override void Paint(PaintEventArgs pe) {
        }
 
    }
} 

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