Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. //------------------------------------------------------------------------------ //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
- ArgumentException.cs
- FileSystemInfo.cs
- _Semaphore.cs
- DbProviderFactories.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- LiteralSubsegment.cs
- XPathAncestorIterator.cs
- TreeNodeBindingCollection.cs
- FixedSOMContainer.cs
- InputLanguageCollection.cs
- Visual3DCollection.cs
- RtType.cs
- UnionCqlBlock.cs
- BaseEntityWrapper.cs
- URLString.cs
- JsonGlobals.cs
- ContentPlaceHolder.cs
- BamlLocalizationDictionary.cs
- SamlAdvice.cs
- SelectionEditingBehavior.cs
- MetadataPropertyAttribute.cs
- EmbeddedMailObjectsCollection.cs
- PageOutputColor.cs
- RegistrationServices.cs
- Missing.cs
- nulltextnavigator.cs
- CopyNodeSetAction.cs
- MediaPlayerState.cs
- PolygonHotSpot.cs
- RoleBoolean.cs
- BatchParser.cs
- EntityConnection.cs
- XPathDescendantIterator.cs
- SafeLibraryHandle.cs
- PartialCachingAttribute.cs
- OutKeywords.cs
- WebPartHelpVerb.cs
- SHA512.cs
- DragEventArgs.cs
- RelationshipEnd.cs
- XmlSubtreeReader.cs
- IdentityNotMappedException.cs
- sapiproxy.cs
- XmlEnumAttribute.cs
- AnnotationObservableCollection.cs
- CriticalExceptions.cs
- DelegateSerializationHolder.cs
- TextSerializer.cs
- DeferredElementTreeState.cs
- EventWaitHandleSecurity.cs
- ExpressionSelection.cs
- ObjectPropertyMapping.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- Site.cs
- WebBodyFormatMessageProperty.cs
- ListView.cs
- EventLogException.cs
- EncryptedHeader.cs
- ComContractElement.cs
- TCPClient.cs
- PropertyRecord.cs
- RuleElement.cs
- ContentTypeSettingDispatchMessageFormatter.cs
- ConstraintEnumerator.cs
- DrawingGroup.cs
- BinaryConverter.cs
- MemoryRecordBuffer.cs
- HtmlInputReset.cs
- CheckPair.cs
- CheckBoxField.cs
- SyndicationItem.cs
- DropShadowEffect.cs
- ExpressionBuilder.cs
- DependentList.cs
- HttpHeaderCollection.cs
- PrintingPermission.cs
- PeerNameResolver.cs
- EncoderExceptionFallback.cs
- StateWorkerRequest.cs
- UniqueID.cs
- XmlElementAttribute.cs
- CopyOnWriteList.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ButtonChrome.cs
- FieldBuilder.cs
- Profiler.cs
- NativeMethodsCLR.cs
- CfgRule.cs
- ExpressionQuoter.cs
- CodeTypeParameter.cs
- DateTimePicker.cs
- ListBox.cs
- PropertyRecord.cs
- Control.cs
- CommonGetThemePartSize.cs
- KeyTimeConverter.cs
- EnvironmentPermission.cs
- DocumentAutomationPeer.cs
- WpfMemberInvoker.cs
- RuleSettings.cs