Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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(); } } } } // 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; 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(); } } } } // 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
- ImageCodecInfo.cs
- WinFormsSecurity.cs
- StringArrayConverter.cs
- DataSourceXmlSerializationAttribute.cs
- NameTable.cs
- DynamicScriptObject.cs
- Interlocked.cs
- SoapCodeExporter.cs
- SafeSecurityHandles.cs
- LoginView.cs
- XmlSchemaRedefine.cs
- PartialCachingAttribute.cs
- CancellationHandler.cs
- DesignerLabelAdapter.cs
- PhysicalFontFamily.cs
- Exceptions.cs
- TextServicesDisplayAttribute.cs
- WorkflowOperationFault.cs
- PieceNameHelper.cs
- DesignerSerializerAttribute.cs
- GenericXmlSecurityTokenAuthenticator.cs
- MeasureItemEvent.cs
- MruCache.cs
- SqlSupersetValidator.cs
- ClientApiGenerator.cs
- ReadOnlyNameValueCollection.cs
- DataTablePropertyDescriptor.cs
- ArrayMergeHelper.cs
- BrowserTree.cs
- DrawingImage.cs
- SafeMemoryMappedViewHandle.cs
- cache.cs
- DataGridViewRowCancelEventArgs.cs
- RightsDocument.cs
- EventLogStatus.cs
- ReachDocumentReferenceCollectionSerializer.cs
- InputElement.cs
- DeviceContext2.cs
- NativeMethods.cs
- EUCJPEncoding.cs
- BuildManager.cs
- TreeViewItem.cs
- StyleCollection.cs
- CellPartitioner.cs
- HintTextConverter.cs
- FamilyCollection.cs
- Int32KeyFrameCollection.cs
- QilTargetType.cs
- DbInsertCommandTree.cs
- TripleDESCryptoServiceProvider.cs
- ScriptControl.cs
- CssStyleCollection.cs
- BrowsableAttribute.cs
- WorkflowInstanceExtensionCollection.cs
- HtmlEncodedRawTextWriter.cs
- FontResourceCache.cs
- RankException.cs
- PackageDigitalSignatureManager.cs
- DbProviderFactory.cs
- RemotingSurrogateSelector.cs
- ConfigurationStrings.cs
- CompositionAdorner.cs
- ConfigXmlComment.cs
- AnnouncementInnerClient11.cs
- Point3DCollectionConverter.cs
- ValueExpressions.cs
- DockProviderWrapper.cs
- TreeNode.cs
- MemberInfoSerializationHolder.cs
- ViewStateException.cs
- QualifiedCellIdBoolean.cs
- DbConvert.cs
- HiddenFieldPageStatePersister.cs
- _StreamFramer.cs
- AnimatedTypeHelpers.cs
- Size3D.cs
- AppDomainUnloadedException.cs
- FillErrorEventArgs.cs
- CodeNamespaceImportCollection.cs
- CredentialCache.cs
- TableProvider.cs
- AssemblyNameUtility.cs
- ProgressChangedEventArgs.cs
- SelectionItemProviderWrapper.cs
- FindResponse.cs
- ConfigurationManagerHelper.cs
- BitConverter.cs
- RSAPKCS1KeyExchangeFormatter.cs
- PkcsMisc.cs
- NameSpaceEvent.cs
- GC.cs
- SqlVisitor.cs
- TracingConnectionInitiator.cs
- CodeCastExpression.cs
- FileAuthorizationModule.cs
- UnitySerializationHolder.cs
- Decorator.cs
- DataObject.cs
- DataRecord.cs
- DBSqlParserColumn.cs