Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Design / ItemCollectionEditor.cs / 1305376 / ItemCollectionEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Drawing.Design; using System.Web.UI.MobileControls; using System.Web.UI.WebControls; using System.Runtime.Serialization.Formatters; ////// [ System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode) ] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] internal class ItemCollectionEditor : UITypeEditor { ////// The editor for Item collections. /// ////// /// /// An/// Edits the value specified. /// ///that specifies the context of the value to edit. /// /// /// An . /// /// /// The object to edit. /// /// /// public override Object EditValue(ITypeDescriptorContext context, IServiceProvider provider, Object value) { IDesignerHost designerHost = (IDesignerHost)context.GetService(typeof(IDesignerHost)); Debug.Assert(designerHost != null, "Did not get DesignerHost service."); Object obj = context.Instance; Debug.Assert(obj is List || obj is SelectionList, "Expected List or SelectionList"); IDesigner designer = designerHost.GetDesigner((IComponent)obj); Debug.Assert(designer != null, "Did not get designer for component"); if (obj is List) { ((ListDesigner)designer).InvokePropertyBuilder(ListComponentEditor.IDX_ITEMS); } else { ((SelectionListDesigner)designer).InvokePropertyBuilder( SelectionListComponentEditor.IDX_ITEMS); } return value; } ////// The updated value. /// ////// /// /// An/// Gets the edit style. /// ///that specifies the associated context. /// /// /// public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { return UITypeEditorEditStyle.Modal; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// A ///that represents the edit style. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BindingList.cs
- SizeKeyFrameCollection.cs
- DataSet.cs
- DataView.cs
- WebScriptMetadataMessage.cs
- XmlnsPrefixAttribute.cs
- TCPListener.cs
- ToolbarAUtomationPeer.cs
- ElementNotEnabledException.cs
- Peer.cs
- LinearQuaternionKeyFrame.cs
- TdsParser.cs
- HtmlInputReset.cs
- GeneralTransform2DTo3DTo2D.cs
- SqlCacheDependencySection.cs
- CollectionViewGroupInternal.cs
- XmlReaderDelegator.cs
- StringFunctions.cs
- CodeParameterDeclarationExpressionCollection.cs
- UnsafeNativeMethods.cs
- HandleCollector.cs
- WebBrowserBase.cs
- HttpHandlersSection.cs
- UnsafeNativeMethodsPenimc.cs
- LogEntryHeaderDeserializer.cs
- PasswordDeriveBytes.cs
- IIS7WorkerRequest.cs
- Set.cs
- MouseGestureValueSerializer.cs
- DeviceFiltersSection.cs
- TypefaceMetricsCache.cs
- BitmapEffectRenderDataResource.cs
- SamlConditions.cs
- HostingPreferredMapPath.cs
- TransformCollection.cs
- FillErrorEventArgs.cs
- EventLogQuery.cs
- ComplexLine.cs
- BaseDataBoundControl.cs
- WebBrowserPermission.cs
- DesignerHierarchicalDataSourceView.cs
- DataGridViewUtilities.cs
- Range.cs
- CodeMethodReturnStatement.cs
- InternalCache.cs
- Processor.cs
- ObjectManager.cs
- ServerIdentity.cs
- TaskbarItemInfo.cs
- unsafeIndexingFilterStream.cs
- ItemCollection.cs
- WindowsStreamSecurityElement.cs
- ViewSimplifier.cs
- SafeNativeMethodsOther.cs
- XmlSerializerFactory.cs
- ByteFacetDescriptionElement.cs
- DesignerLoader.cs
- QilTernary.cs
- DocumentSequence.cs
- ListViewGroupConverter.cs
- MetadataCollection.cs
- TimeoutException.cs
- CertificateReferenceElement.cs
- PointAnimationClockResource.cs
- CreateParams.cs
- InheritedPropertyChangedEventArgs.cs
- RuleSetDialog.cs
- RuntimeUtils.cs
- UpdateTranslator.cs
- PeerToPeerException.cs
- DurationConverter.cs
- FontFaceLayoutInfo.cs
- PointCollectionConverter.cs
- _NestedMultipleAsyncResult.cs
- InheritanceRules.cs
- DataTemplateSelector.cs
- ScrollEvent.cs
- ConfigurationLocation.cs
- XmlSchemaAny.cs
- MailSettingsSection.cs
- BinaryWriter.cs
- ToolboxItem.cs
- ELinqQueryState.cs
- DelayedRegex.cs
- SQLUtility.cs
- EntityTransaction.cs
- AuthenticationService.cs
- WebPartZoneCollection.cs
- OraclePermission.cs
- XMLSyntaxException.cs
- XmlSchema.cs
- DataObjectEventArgs.cs
- BackEase.cs
- SecurityAlgorithmSuite.cs
- SqlRetyper.cs
- AgileSafeNativeMemoryHandle.cs
- DataBindingValueUIHandler.cs
- DataComponentNameHandler.cs
- Point3DAnimationUsingKeyFrames.cs
- CommandLibraryHelper.cs