Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / Design / WinFormsComponentEditor.cs / 1305376 / 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. //------------------------------------------------------------------------------ //Gets the index of the ///to be shown by default as the /// first active page. // 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.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
- HandleScope.cs
- WorkflowInstanceProvider.cs
- WindowsFormsHostAutomationPeer.cs
- ConfigXmlSignificantWhitespace.cs
- HttpAsyncResult.cs
- TraceContext.cs
- HttpModuleCollection.cs
- CollectionBase.cs
- NavigationWindowAutomationPeer.cs
- XmlSignificantWhitespace.cs
- NotFiniteNumberException.cs
- CorrelationToken.cs
- DocumentViewerConstants.cs
- StyleTypedPropertyAttribute.cs
- MessageQueueException.cs
- DependencyObjectCodeDomSerializer.cs
- OleDbPermission.cs
- ColumnMapVisitor.cs
- WebPartConnectionsConfigureVerb.cs
- ExtenderProvidedPropertyAttribute.cs
- CharacterString.cs
- RoutedCommand.cs
- TimeZone.cs
- SslStream.cs
- SiteMembershipCondition.cs
- HeaderCollection.cs
- PolicyLevel.cs
- BufferAllocator.cs
- QilGeneratorEnv.cs
- HostSecurityManager.cs
- PartialCachingControl.cs
- IsolationInterop.cs
- PackagingUtilities.cs
- DataBoundControlAdapter.cs
- SafeProcessHandle.cs
- QilSortKey.cs
- ConstantProjectedSlot.cs
- BulletedListEventArgs.cs
- _LoggingObject.cs
- TableFieldsEditor.cs
- ThreadExceptionEvent.cs
- EntityException.cs
- ListBase.cs
- DBConnectionString.cs
- SecurityTokenException.cs
- DetailsViewCommandEventArgs.cs
- Style.cs
- glyphs.cs
- AttachmentCollection.cs
- ExpressionPrefixAttribute.cs
- WindowsRichEditRange.cs
- SudsCommon.cs
- AutomationPatternInfo.cs
- QuotedStringFormatReader.cs
- UpdateTracker.cs
- XslTransform.cs
- TemplateAction.cs
- NestedContainer.cs
- SafeLocalAllocation.cs
- SQLGuid.cs
- DefaultBinder.cs
- MarkupCompilePass2.cs
- UInt16Converter.cs
- XmlProcessingInstruction.cs
- ThemeableAttribute.cs
- StateMachineAction.cs
- QilValidationVisitor.cs
- PerfCounters.cs
- LinearKeyFrames.cs
- AutomationPropertyInfo.cs
- WrappedIUnknown.cs
- ExpressionConverter.cs
- Decorator.cs
- WorkflowView.cs
- WebPartConnectionsCloseVerb.cs
- FrameDimension.cs
- ModelUIElement3D.cs
- DirtyTextRange.cs
- SRDisplayNameAttribute.cs
- Activator.cs
- CounterSample.cs
- SoapConverter.cs
- WebPartMinimizeVerb.cs
- CornerRadiusConverter.cs
- ExtensionDataObject.cs
- RawContentTypeMapper.cs
- ApplicationInfo.cs
- AsyncCodeActivity.cs
- Conditional.cs
- XmlSignatureManifest.cs
- DataGridViewButtonCell.cs
- EncryptedType.cs
- DataMemberFieldConverter.cs
- HttpCapabilitiesSectionHandler.cs
- XmlDomTextWriter.cs
- Utility.cs
- SymDocumentType.cs
- CFStream.cs
- SerialReceived.cs
- ObjectStorage.cs