DesignerActionItem.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 / CompMod / System / ComponentModel / Design / DesignerActionItem.cs / 1 / DesignerActionItem.cs

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

namespace System.ComponentModel.Design { 
 
    using System;
    using System.Collections; 
    using System.Collections.Specialized;
    using System.ComponentModel;
    using System.Text.RegularExpressions;
 
    /// 
    ///  
    ///     A menu command that defines text and other metadata to describe a targeted task that can be performed. 
    //      Tasks typically walk the user through some multi-step process, such as configuring a data source for a component.
    //      Designer tasks are shown in a custom piece of UI (Chrome). 
    /// 
    /// 
    public abstract class DesignerActionItem {
 
        private bool                            allowAssociate;
        private string                          displayName; 
        private string                          description; 
        private string                          category;
        private IDictionary                     properties; 


        /// 
        ///  
        ///     [to be provvided]
        ///  
        public DesignerActionItem(string displayName, string category, string description) { 
            this.category = category;
            this.description = description; 
            this.displayName = displayName == null ? null : Regex.Replace(displayName, @"\(\&.\)", ""); // VSWHIDBEY 485835
        }

        internal DesignerActionItem() { 
        }
 
        ///  
        /// 
        ///     [to be provvided] 
        /// 
        public bool AllowAssociate {
            get {
                return allowAssociate; 
            }
            set { 
                allowAssociate = value; 
            }
        } 

        /// 
        /// 
        ///     [to be provvided] 
        /// 
        public virtual string Category { 
            get { 
                return category;
            } 
        }

        /// 
        ///  
        ///     [to be provvided]
        ///  
        public virtual string Description { 
            get {
                return description; 
            }
        }

        ///  
        /// 
        ///     [to be provvided] 
        ///  
        public virtual string DisplayName {
            get { 
                return displayName;
            }
        }
 
        /// 
        ///  
        ///     [to be provvided] 
        /// 
        public IDictionary Properties { 
            get {
                if (properties == null) {
                    properties = new HybridDictionary();
                } 
                return properties;
            } 
        } 
    }
 
}


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