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
- ByteStorage.cs
- ArcSegment.cs
- BaseCollection.cs
- SmtpFailedRecipientsException.cs
- SaveFileDialog.cs
- ZipIOFileItemStream.cs
- Switch.cs
- InputElement.cs
- SimpleRecyclingCache.cs
- FileUtil.cs
- WhitespaceSignificantCollectionAttribute.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- figurelength.cs
- BamlRecordWriter.cs
- HiddenFieldPageStatePersister.cs
- JsonXmlDataContract.cs
- SqlBuilder.cs
- XmlWriterSettings.cs
- PaintValueEventArgs.cs
- ProxyWebPart.cs
- HtmlButton.cs
- GlobalAllocSafeHandle.cs
- AddDataControlFieldDialog.cs
- LogManagementAsyncResult.cs
- TrustManager.cs
- CollectionViewProxy.cs
- TypeForwardedToAttribute.cs
- DataPagerCommandEventArgs.cs
- LoginViewDesigner.cs
- Compiler.cs
- BooleanStorage.cs
- TextEncodedRawTextWriter.cs
- _BufferOffsetSize.cs
- oledbconnectionstring.cs
- ServicePoint.cs
- FeatureSupport.cs
- DateTimeStorage.cs
- HttpAsyncResult.cs
- NamespaceList.cs
- ModuleBuilderData.cs
- GlyphRunDrawing.cs
- RuleRef.cs
- FocusWithinProperty.cs
- SourceChangedEventArgs.cs
- BuildResultCache.cs
- OperandQuery.cs
- _ListenerRequestStream.cs
- FieldTemplateUserControl.cs
- ImageButton.cs
- OracleCommandSet.cs
- SafeHGlobalHandleCritical.cs
- CFStream.cs
- Vector3DAnimation.cs
- ActivationArguments.cs
- HttpModulesSection.cs
- ResolveNameEventArgs.cs
- AssemblyEvidenceFactory.cs
- BitmapDecoder.cs
- XDRSchema.cs
- Decimal.cs
- TriggerBase.cs
- BrowserDefinition.cs
- PerformanceCounterPermissionEntry.cs
- TextTreeDeleteContentUndoUnit.cs
- LocalTransaction.cs
- transactioncontext.cs
- Tuple.cs
- designeractionbehavior.cs
- DesignerLoader.cs
- FastEncoder.cs
- SQLDateTime.cs
- OdbcDataReader.cs
- BoundColumn.cs
- ResourcesBuildProvider.cs
- TemplateBamlTreeBuilder.cs
- ParentUndoUnit.cs
- GridViewRowEventArgs.cs
- WorkflowStateRollbackService.cs
- XmlNodeComparer.cs
- Config.cs
- Configuration.cs
- NumberSubstitution.cs
- UncommonField.cs
- SortedSet.cs
- PolyQuadraticBezierSegment.cs
- XmlComment.cs
- NonParentingControl.cs
- ValueChangedEventManager.cs
- ISessionStateStore.cs
- GradientStopCollection.cs
- MaterialGroup.cs
- PathSegmentCollection.cs
- ErrorFormatterPage.cs
- NotificationContext.cs
- DependencyPropertyValueSerializer.cs
- ValidatorAttribute.cs
- Rule.cs
- FrameworkRichTextComposition.cs
- ToolStripStatusLabel.cs
- UseLicense.cs