WebFormDesignerActionService.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 / WebForms / System / Web / UI / Design / WebFormDesignerActionService.cs / 1 / WebFormDesignerActionService.cs

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

namespace System.Web.UI.Design { 
    using System; 
    using System.Collections;
    using System.Collections.Specialized; 
    using System.ComponentModel;
    using System.ComponentModel.Design;
    using System.Design;
    using System.Diagnostics; 
    using System.Drawing;
    using System.Drawing.Design; 
    using System.Globalization; 
    using System.Resources;
    using System.Web.Compilation; 
    using System.Web.UI;

    /// 
    ///  
    public class WebFormsDesignerActionService : DesignerActionService {
        public WebFormsDesignerActionService(IServiceProvider serviceProvider) 
            : base(serviceProvider) { 
        }
 
        protected override void GetComponentDesignerActions(IComponent component, DesignerActionListCollection actionLists) {
            if (component == null) {
                throw new ArgumentNullException("component");
            } 

            if (actionLists == null) { 
                throw new ArgumentNullException("actionLists"); 
            }
 
            IServiceContainer sc = component.Site as IServiceContainer;
            if (sc != null) {
                DesignerCommandSet dcs = (DesignerCommandSet)sc.GetService(typeof(DesignerCommandSet));
                if (dcs != null) { 
                    DesignerActionListCollection pullCollection = dcs.ActionLists;
                    if (pullCollection != null) { 
                        actionLists.AddRange(pullCollection); 
                    }
                } 
                // if we don't find any, add the verbs for this component there...
                if ((actionLists.Count == 0) ||
                    ((actionLists.Count == 1) && (actionLists[0] is ControlDesigner.ControlDesignerActionList))) {
                    DesignerVerbCollection verbs = dcs.Verbs; 
                    if (verbs != null && verbs.Count != 0) {
                        DesignerVerb[] verbsArray = new DesignerVerb[verbs.Count]; 
                        verbs.CopyTo(verbsArray, 0); 
                        actionLists.Add(new DesignerActionVerbList(verbsArray));
                    } 
                }
            }
        }
    } 
}

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