Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / MenuItemStyleCollection.cs / 1305376 / MenuItemStyleCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Web; public sealed class MenuItemStyleCollection : StateManagedCollection { private static readonly Type[] knownTypes = new Type[] { typeof(MenuItemStyle) }; internal MenuItemStyleCollection() { } protected override void OnInsert(int index, object value) { base.OnInsert(index, value); if (value is MenuItemStyle) { MenuItemStyle style = (MenuItemStyle)value; style.Font.Underline = style.Font.Underline; } else { throw new ArgumentException(SR.GetString(SR.MenuItemStyleCollection_InvalidArgument), "value"); } } public MenuItemStyle this[int i] { get { return (MenuItemStyle)((IList)this)[i]; } set { ((IList)this)[i] = value; } } public int Add(MenuItemStyle style) { return ((IList)this).Add(style); } public bool Contains(MenuItemStyle style) { return ((IList)this).Contains(style); } public void CopyTo(MenuItemStyle[] styleArray, int index) { base.CopyTo(styleArray, index); } public int IndexOf(MenuItemStyle style) { return ((IList)this).IndexOf(style); } public void Insert(int index, MenuItemStyle style) { ((IList)this).Insert(index, style); } protected override object CreateKnownType(int index) { return new MenuItemStyle(); } protected override Type[] GetKnownTypes() { return knownTypes; } public void Remove(MenuItemStyle style) { ((IList)this).Remove(style); } public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } protected override void SetDirtyObject(object o) { if (o is MenuItemStyle) { ((MenuItemStyle)o).SetDirty(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Web; public sealed class MenuItemStyleCollection : StateManagedCollection { private static readonly Type[] knownTypes = new Type[] { typeof(MenuItemStyle) }; internal MenuItemStyleCollection() { } protected override void OnInsert(int index, object value) { base.OnInsert(index, value); if (value is MenuItemStyle) { MenuItemStyle style = (MenuItemStyle)value; style.Font.Underline = style.Font.Underline; } else { throw new ArgumentException(SR.GetString(SR.MenuItemStyleCollection_InvalidArgument), "value"); } } public MenuItemStyle this[int i] { get { return (MenuItemStyle)((IList)this)[i]; } set { ((IList)this)[i] = value; } } public int Add(MenuItemStyle style) { return ((IList)this).Add(style); } public bool Contains(MenuItemStyle style) { return ((IList)this).Contains(style); } public void CopyTo(MenuItemStyle[] styleArray, int index) { base.CopyTo(styleArray, index); } public int IndexOf(MenuItemStyle style) { return ((IList)this).IndexOf(style); } public void Insert(int index, MenuItemStyle style) { ((IList)this).Insert(index, style); } protected override object CreateKnownType(int index) { return new MenuItemStyle(); } protected override Type[] GetKnownTypes() { return knownTypes; } public void Remove(MenuItemStyle style) { ((IList)this).Remove(style); } public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } protected override void SetDirtyObject(object o) { if (o is MenuItemStyle) { ((MenuItemStyle)o).SetDirty(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DefaultAuthorizationContext.cs
- SoapElementAttribute.cs
- ToolStripCustomTypeDescriptor.cs
- SQLSingleStorage.cs
- EntityDataSourceContextDisposingEventArgs.cs
- DriveInfo.cs
- ParameterReplacerVisitor.cs
- SafeLibraryHandle.cs
- AdapterUtil.cs
- ServiceObjectContainer.cs
- GlobalizationAssembly.cs
- GeneralTransform.cs
- CustomValidator.cs
- CanExecuteRoutedEventArgs.cs
- OutputCacheProfileCollection.cs
- DesignerSerializationVisibilityAttribute.cs
- XamlHostingSection.cs
- AspCompat.cs
- SchemaInfo.cs
- ConfigurationValues.cs
- PropertyCondition.cs
- FrameworkElementFactory.cs
- Rotation3DAnimation.cs
- CachingHintValidation.cs
- LinkUtilities.cs
- EmbeddedMailObjectsCollection.cs
- ArgumentException.cs
- CurrencyWrapper.cs
- RelationshipEndMember.cs
- ColorBlend.cs
- CircleHotSpot.cs
- StrokeDescriptor.cs
- ByValueEqualityComparer.cs
- PropertyInfoSet.cs
- SqlProfileProvider.cs
- EdmPropertyAttribute.cs
- OdbcParameterCollection.cs
- DataBoundControlAdapter.cs
- TracedNativeMethods.cs
- OutputCacheSettingsSection.cs
- UrlMappingsModule.cs
- FormViewInsertedEventArgs.cs
- StateManagedCollection.cs
- TimerExtension.cs
- AdCreatedEventArgs.cs
- CodeAssignStatement.cs
- MultiBindingExpression.cs
- SimpleParser.cs
- DataGridTextBox.cs
- Viewport3DVisual.cs
- HtmlTitle.cs
- PropertyMetadata.cs
- SecurityKeyUsage.cs
- WebException.cs
- WindowsComboBox.cs
- VisualStyleElement.cs
- TransformedBitmap.cs
- Tracking.cs
- RelatedImageListAttribute.cs
- Section.cs
- TraceUtility.cs
- KnownBoxes.cs
- HttpWebRequestElement.cs
- SharedConnectionListener.cs
- DnsPermission.cs
- ControllableStoryboardAction.cs
- WebEncodingValidatorAttribute.cs
- WindowsTitleBar.cs
- MetadataSection.cs
- TextReader.cs
- ProfileProvider.cs
- CryptoStream.cs
- HtmlEmptyTagControlBuilder.cs
- CustomCredentialPolicy.cs
- EnumValAlphaComparer.cs
- SqlNotificationEventArgs.cs
- CodeGenerator.cs
- SiteMapNodeCollection.cs
- TypeSystemProvider.cs
- WorkflowOperationBehavior.cs
- NeutralResourcesLanguageAttribute.cs
- BamlCollectionHolder.cs
- TableProvider.cs
- MachineKeyValidationConverter.cs
- SmiContextFactory.cs
- XmlAnyElementAttributes.cs
- _ProxyRegBlob.cs
- ConstraintStruct.cs
- ComplexTypeEmitter.cs
- ConfigXmlSignificantWhitespace.cs
- ServiceManagerHandle.cs
- URLString.cs
- EventLogPermissionEntryCollection.cs
- CryptoProvider.cs
- ClientBuildManagerCallback.cs
- CollectionViewGroupInternal.cs
- Ppl.cs
- ToolStripContentPanelRenderEventArgs.cs
- XsdSchemaFileEditor.cs
- DesignerSerializerAttribute.cs