Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / Design / WinFormsComponentEditor.cs / 1 / WinFormsComponentEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System.ComponentModel; using System.Diagnostics; using System; using System.Windows.Forms; using System.ComponentModel.Design; using System.Drawing; using Microsoft.Win32; ////// /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] public abstract class WindowsFormsComponentEditor : ComponentEditor { ///Provides a base class for editors that support any type /// of ////// objects. /// /// public override bool EditComponent(ITypeDescriptorContext context, object component){ return EditComponent(context, component, null); } ///Activates a UI used to edit the component. ////// /// public bool EditComponent(object component, IWin32Window owner) { return EditComponent(null, component, owner); } ////// Activates the advanced UI used to edit the component. ////// /// public virtual bool EditComponent(ITypeDescriptorContext context, object component, IWin32Window owner) { bool changed = false; Type[] pageControlTypes = GetComponentEditorPages(); if ((pageControlTypes != null) && (pageControlTypes.Length != 0)) { ComponentEditorForm form = new ComponentEditorForm(component, pageControlTypes); if (form.ShowForm(owner, GetInitialComponentEditorPageIndex()) == DialogResult.OK) changed = true; } return changed; } ////// Activates the advanced UI used to edit the component. ////// /// protected virtual Type[] GetComponentEditorPages() { return null; } ///Gets the set of ///pages to be used. /// /// protected virtual int GetInitialComponentEditorPageIndex() { return 0; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets the index of the ///to be shown by default as the /// first active page.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Compensate.cs
- SecondaryIndexList.cs
- CollectionViewSource.cs
- ToggleButtonAutomationPeer.cs
- unsafenativemethodstextservices.cs
- SerializationStore.cs
- SQLDateTimeStorage.cs
- XmlSchemaImporter.cs
- ActionNotSupportedException.cs
- RepeatBehaviorConverter.cs
- PeerCollaborationPermission.cs
- AlphabeticalEnumConverter.cs
- RawStylusActions.cs
- TileBrush.cs
- SystemWebExtensionsSectionGroup.cs
- TrustManager.cs
- SHA256CryptoServiceProvider.cs
- contentDescriptor.cs
- HtmlTableRow.cs
- AppSecurityManager.cs
- CmsInterop.cs
- SecurityDescriptor.cs
- PointLight.cs
- EffectiveValueEntry.cs
- DataPagerCommandEventArgs.cs
- RuntimeUtils.cs
- DataGridHelper.cs
- WebReferencesBuildProvider.cs
- XPathSelectionIterator.cs
- QilFunction.cs
- DataContractFormatAttribute.cs
- GridViewActionList.cs
- GPStream.cs
- TemplateEditingService.cs
- HttpGetServerProtocol.cs
- Atom10FormatterFactory.cs
- PathSegment.cs
- PathGeometry.cs
- UserPersonalizationStateInfo.cs
- CatalogPart.cs
- DataExpression.cs
- SerializableAttribute.cs
- Size.cs
- _ListenerAsyncResult.cs
- MenuItemStyleCollection.cs
- UDPClient.cs
- RtfToXamlLexer.cs
- TableCell.cs
- XmlCharacterData.cs
- TypeValidationEventArgs.cs
- GuidelineSet.cs
- ConstraintCollection.cs
- CodeObjectCreateExpression.cs
- regiisutil.cs
- FileLogRecordHeader.cs
- AutomationProperties.cs
- ContentOperations.cs
- TreeViewImageKeyConverter.cs
- AttachedPropertyBrowsableAttribute.cs
- ButtonChrome.cs
- UIElementParaClient.cs
- Guid.cs
- BindUriHelper.cs
- SecurityContextSecurityToken.cs
- PageParser.cs
- FilteredDataSetHelper.cs
- RangeBaseAutomationPeer.cs
- GcSettings.cs
- ListBoxItemAutomationPeer.cs
- InteropEnvironment.cs
- SpinWait.cs
- XmlChoiceIdentifierAttribute.cs
- pingexception.cs
- EditCommandColumn.cs
- DataRowCollection.cs
- SoapExtensionReflector.cs
- FixedTextSelectionProcessor.cs
- XComponentModel.cs
- ListViewGroupConverter.cs
- Message.cs
- XsltException.cs
- DataBindingCollectionConverter.cs
- DocumentOrderQuery.cs
- PropertyEmitterBase.cs
- MemberMaps.cs
- SafeRegistryHandle.cs
- WinFormsSpinner.cs
- ListViewEditEventArgs.cs
- AdornerHitTestResult.cs
- CachedTypeface.cs
- CultureTableRecord.cs
- XmlEnumAttribute.cs
- XmlSchemaObject.cs
- DataGridColumnEventArgs.cs
- RelationshipEnd.cs
- NonSerializedAttribute.cs
- WebEncodingValidatorAttribute.cs
- IItemContainerGenerator.cs
- XmlSchemaAll.cs
- UriTemplateDispatchFormatter.cs