Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Design / TableFieldsEditor.cs / 1305376 / TableFieldsEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls { using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Drawing.Design; using System.Web.UI.MobileControls; ////// [ 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 TableFieldsEditor : MobileUITypeEditor { ////// The editor for column 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) { Debug.Assert(context != null); ObjectList objectList = context.Instance as ObjectList; Debug.Assert(objectList != null); ObjectListDesigner designer = GetDesigner(context) as ObjectListDesigner; Debug.Assert(designer != null); designer.InvokePropertyBuilder(ObjectListComponentEditor.IDX_GENERAL); return objectList.TableFields; } public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { // Disable the ... button in multi-selected case. if (context.Instance is ObjectList) { return base.GetEditStyle(context); } return UITypeEditorEditStyle.None; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// The updated value. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GetRecipientRequest.cs
- ResourceProviderFactory.cs
- RelatedImageListAttribute.cs
- HttpApplication.cs
- TableCell.cs
- TemplateAction.cs
- ViewGenResults.cs
- SharedDp.cs
- MemberCollection.cs
- GridPattern.cs
- XmlTextReader.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- ObjectItemConventionAssemblyLoader.cs
- TableItemPattern.cs
- StorageInfo.cs
- GcSettings.cs
- BlockUIContainer.cs
- SQLChars.cs
- SwitchElementsCollection.cs
- StyleBamlRecordReader.cs
- EventLogPermissionAttribute.cs
- SynchronizedMessageSource.cs
- ClientRoleProvider.cs
- SafeMILHandle.cs
- IdentityManager.cs
- ReadOnlyHierarchicalDataSource.cs
- ProfilePropertyNameValidator.cs
- TextEmbeddedObject.cs
- AsyncOperationManager.cs
- SafeNativeMethodsOther.cs
- mactripleDES.cs
- ChannelProtectionRequirements.cs
- TabletCollection.cs
- SecureEnvironment.cs
- CollectionView.cs
- AjaxFrameworkAssemblyAttribute.cs
- TraceLevelStore.cs
- DataGridViewComboBoxColumn.cs
- HandleCollector.cs
- IMembershipProvider.cs
- Queue.cs
- ActiveXSite.cs
- XmlnsDefinitionAttribute.cs
- NetworkInterface.cs
- FileDialogCustomPlace.cs
- RoleBoolean.cs
- StrokeSerializer.cs
- TcpClientSocketManager.cs
- ObjectConverter.cs
- XmlEnumAttribute.cs
- GeneralTransform2DTo3D.cs
- AnchoredBlock.cs
- EntityProviderServices.cs
- ValidationErrorCollection.cs
- DynamicScriptObject.cs
- SiteMapNode.cs
- AuthenticationConfig.cs
- StackOverflowException.cs
- AssociationSetEnd.cs
- TypeConverter.cs
- UnionCodeGroup.cs
- BindingCompleteEventArgs.cs
- CustomPopupPlacement.cs
- ConfigurationPermission.cs
- MailMessageEventArgs.cs
- Int64Converter.cs
- DataAdapter.cs
- SafeWaitHandle.cs
- LineServicesCallbacks.cs
- dataSvcMapFileLoader.cs
- InputLangChangeEvent.cs
- MimeParameterWriter.cs
- PenCursorManager.cs
- ProxyWebPartManager.cs
- DataGridItemEventArgs.cs
- RegionIterator.cs
- TextServicesProperty.cs
- EntityClientCacheEntry.cs
- EnterpriseServicesHelper.cs
- StorageModelBuildProvider.cs
- URLIdentityPermission.cs
- GridViewRowPresenterBase.cs
- _CacheStreams.cs
- Brush.cs
- CreateInstanceBinder.cs
- ObjectDataSourceView.cs
- SrgsElement.cs
- Point4D.cs
- FolderLevelBuildProviderCollection.cs
- CommonXSendMessage.cs
- Font.cs
- Sql8ExpressionRewriter.cs
- CheckBoxFlatAdapter.cs
- HeaderUtility.cs
- DataBoundControl.cs
- NamedPipeProcessProtocolHandler.cs
- NullableDoubleAverageAggregationOperator.cs
- SoapConverter.cs
- DataTemplateSelector.cs
- DataContractSerializerOperationBehavior.cs