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
- TableAdapterManagerHelper.cs
- SparseMemoryStream.cs
- ColorComboBox.cs
- TableLayout.cs
- IIS7WorkerRequest.cs
- PixelFormatConverter.cs
- StrokeIntersection.cs
- ClientRolePrincipal.cs
- AssemblyCache.cs
- BamlStream.cs
- XmlSerializer.cs
- WmpBitmapDecoder.cs
- validationstate.cs
- Empty.cs
- DesignerSelectionListAdapter.cs
- TypeBrowserDialog.cs
- StringFreezingAttribute.cs
- Merger.cs
- DocumentGridContextMenu.cs
- DataGridColumn.cs
- HighlightComponent.cs
- CompositionAdorner.cs
- InstanceOwnerException.cs
- PropertyGridEditorPart.cs
- HttpCacheParams.cs
- JsonXmlDataContract.cs
- TableCell.cs
- SaveFileDialog.cs
- HttpPostedFileBase.cs
- AsyncPostBackErrorEventArgs.cs
- WebControl.cs
- FakeModelPropertyImpl.cs
- FormClosingEvent.cs
- ToggleButton.cs
- DataGridViewMethods.cs
- DbgCompiler.cs
- XmlSerializationReader.cs
- LabelAutomationPeer.cs
- RsaKeyGen.cs
- WinFormsSecurity.cs
- WebSysDescriptionAttribute.cs
- SqlProcedureAttribute.cs
- XmlIgnoreAttribute.cs
- DateTimeConverter.cs
- autovalidator.cs
- HwndSource.cs
- ManipulationDevice.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- DataServicePagingProviderWrapper.cs
- TraceShell.cs
- ScriptControlManager.cs
- BaseTreeIterator.cs
- ThreadInterruptedException.cs
- PropertyPathConverter.cs
- Normalization.cs
- UserControlBuildProvider.cs
- CompressionTracing.cs
- filewebresponse.cs
- BitmapCacheBrush.cs
- __ConsoleStream.cs
- Imaging.cs
- propertytag.cs
- BaseValidator.cs
- KeyPressEvent.cs
- Composition.cs
- KeyInfo.cs
- UserControl.cs
- RelativeSource.cs
- ProtocolInformationWriter.cs
- FolderBrowserDialogDesigner.cs
- securitycriticaldataClass.cs
- EtwTrackingParticipant.cs
- NewExpression.cs
- CompositeActivityDesigner.cs
- TextRangeBase.cs
- Serializer.cs
- IDQuery.cs
- CounterCreationDataCollection.cs
- X509CertificateTrustedIssuerElement.cs
- EdmConstants.cs
- Exception.cs
- XmlILOptimizerVisitor.cs
- ValuePattern.cs
- OLEDB_Enum.cs
- DocobjHost.cs
- XamlReader.cs
- PersonalizationAdministration.cs
- Module.cs
- SystemUnicastIPAddressInformation.cs
- SimpleWorkerRequest.cs
- MexHttpsBindingCollectionElement.cs
- HostProtectionPermission.cs
- XmlElement.cs
- HtmlInputControl.cs
- SettingsSavedEventArgs.cs
- List.cs
- ComponentDispatcher.cs
- GridViewRowPresenterBase.cs
- DataGridViewAdvancedBorderStyle.cs
- ImplicitInputBrush.cs