Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / MenuItemStyleCollection.cs / 1 / 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; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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(); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BigInt.cs
- VoiceSynthesis.cs
- Base64Encoder.cs
- ScanQueryOperator.cs
- MarshalByRefObject.cs
- DocumentGridContextMenu.cs
- KeySpline.cs
- AuthenticationService.cs
- ResourceExpressionBuilder.cs
- XmlDocumentSerializer.cs
- SeverityFilter.cs
- TypeListConverter.cs
- PrePrepareMethodAttribute.cs
- WebPartMinimizeVerb.cs
- Message.cs
- PageCatalogPart.cs
- Win32SafeHandles.cs
- LinkButton.cs
- FactoryGenerator.cs
- DPCustomTypeDescriptor.cs
- RequestCachePolicyConverter.cs
- CountAggregationOperator.cs
- SystemResourceHost.cs
- ParamArrayAttribute.cs
- EntityParameterCollection.cs
- DictionaryGlobals.cs
- ReadOnlyCollectionBase.cs
- RequestQueue.cs
- ControllableStoryboardAction.cs
- Container.cs
- StylusCollection.cs
- SplitterCancelEvent.cs
- BitmapDecoder.cs
- XPathBinder.cs
- UserPreference.cs
- HttpContext.cs
- StreamGeometryContext.cs
- SchemaDeclBase.cs
- WebBrowsableAttribute.cs
- TagMapCollection.cs
- SecureEnvironment.cs
- XmlCharCheckingWriter.cs
- ToolboxItemSnapLineBehavior.cs
- SpellerInterop.cs
- SizeKeyFrameCollection.cs
- RouteItem.cs
- Label.cs
- ButtonField.cs
- IgnoreFlushAndCloseStream.cs
- Rotation3DAnimationUsingKeyFrames.cs
- PingOptions.cs
- XPathSelfQuery.cs
- TextAnchor.cs
- SiteMapProvider.cs
- As.cs
- TextTreeRootTextBlock.cs
- PropertyItemInternal.cs
- SpeakInfo.cs
- OutOfProcStateClientManager.cs
- SkipStoryboardToFill.cs
- TemplateComponentConnector.cs
- CuspData.cs
- ImageMap.cs
- List.cs
- RawTextInputReport.cs
- XmlDataContract.cs
- EmbeddedMailObject.cs
- SafePEFileHandle.cs
- DataBinding.cs
- unsafenativemethodstextservices.cs
- SmiContext.cs
- UrlMappingCollection.cs
- _BufferOffsetSize.cs
- TextEditorSpelling.cs
- UniqueIdentifierService.cs
- FontDriver.cs
- MediaContextNotificationWindow.cs
- BoolLiteral.cs
- NodeInfo.cs
- _NestedMultipleAsyncResult.cs
- EFColumnProvider.cs
- Util.cs
- TabItemWrapperAutomationPeer.cs
- AnyAllSearchOperator.cs
- AuthorizationSection.cs
- HierarchicalDataBoundControlAdapter.cs
- LocatorGroup.cs
- InkCanvasAutomationPeer.cs
- Util.cs
- DBDataPermissionAttribute.cs
- TextClipboardData.cs
- WebAdminConfigurationHelper.cs
- StdValidatorsAndConverters.cs
- QueryGeneratorBase.cs
- GlobalEventManager.cs
- FileLoadException.cs
- URI.cs
- FlowDocumentFormatter.cs
- JoinTreeSlot.cs
- ImageIndexConverter.cs