DataGridViewComponentPropertyGridSite.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 / DataGridViewComponentPropertyGridSite.cs / 1 / DataGridViewComponentPropertyGridSite.cs

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

/* 
 */ 
namespace System.Windows.Forms.Design {
 
    using System;
    using System.Design;
    using System.CodeDom;
    using System.Collections; 
    using System.Collections.Specialized;
    using System.ComponentModel; 
    using System.ComponentModel.Design; 
    using System.ComponentModel.Design.Serialization;
    using System.Diagnostics; 
    using System.Reflection;
    using System.Windows.Forms;

    internal class DataGridViewComponentPropertyGridSite : ISite { 

         private IServiceProvider sp; 
         private IComponent comp; 
         private bool       inGetService = false;
 
         public DataGridViewComponentPropertyGridSite(IServiceProvider sp, IComponent comp) {
             this.sp = sp;
             this.comp = comp;
         } 

         /** The component sited by this component site. */ 
         ///  
         /// 
         ///    When implemented by a class, gets the component associated with the . 
         /// 
         public IComponent Component {get {return comp;}}

         /** The container in which the component is sited. */ 
         /// 
         ///  
         /// When implemented by a class, gets the container associated with the . 
         /// 
         public IContainer Container {get {return null;}} 

         /** Indicates whether the component is in design mode. */
         /// 
         ///  
         ///    When implemented by a class, determines whether the component is in design mode.
         ///  
         public  bool DesignMode {get {return false;}} 

         /** 
          * The name of the component.
          */
         /// 
           ///  
           ///    When implemented by a class, gets or sets the name of
           ///       the component associated with the . 
           ///  
           public String Name {
                   get {return null;} 
                   set {}
           }

           public object GetService(Type t) { 
               if (!inGetService && sp != null) {
                   try { 
                       inGetService = true; 
                       return sp.GetService(t);
                   } 
                   finally {
                       inGetService = false;
                   }
               } 
               return null;
         } 
     } 
}

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