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

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

/* 
 */ 
namespace System.Windows.Forms.Design {
    using System; 
    using System.Collections.Generic;
    using System.Text;
    using System.Collections;
 

    internal class ContextMenuStripGroupCollection : DictionaryBase { 
 
        public ContextMenuStripGroupCollection() {
 
        }

        public ContextMenuStripGroup this[string key] {
            get { 
                if (!this.InnerHashtable.ContainsKey(key)) {
                    this.InnerHashtable[key] = new ContextMenuStripGroup(key); 
                } 
                return this.InnerHashtable[key] as ContextMenuStripGroup;
 
            }
        }

        public bool ContainsKey(string key) { 
            return InnerHashtable.ContainsKey(key);
        } 
        protected override void OnInsert(object key, object value) { 
            if (!(value is ContextMenuStripGroup)) {
                throw new NotSupportedException(); 
            }
            base.OnInsert(key, value);
        }
 
        protected override void OnSet(object key, object oldValue, object newValue) {
            if (!(newValue is ContextMenuStripGroup)) { 
                throw new NotSupportedException(); 
            }
            base.OnSet(key, oldValue, newValue); 
        }
    }
}
 

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