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
- XmlEntity.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- Property.cs
- DelegatingTypeDescriptionProvider.cs
- XhtmlBasicListAdapter.cs
- SqlCacheDependency.cs
- SqlTypeSystemProvider.cs
- DocumentViewerBaseAutomationPeer.cs
- MonthChangedEventArgs.cs
- DelegateBodyWriter.cs
- PKCS1MaskGenerationMethod.cs
- AsyncOperationContext.cs
- ArrayConverter.cs
- TextRangeBase.cs
- FormsAuthentication.cs
- TextRangeSerialization.cs
- ComplexLine.cs
- FunctionDescription.cs
- XamlFilter.cs
- SizeChangedInfo.cs
- DatagridviewDisplayedBandsData.cs
- NumberFunctions.cs
- CompareValidator.cs
- WCFBuildProvider.cs
- ServiceInfoCollection.cs
- MatrixCamera.cs
- Vertex.cs
- NativeMethods.cs
- XamlClipboardData.cs
- ActivityDesignerHelper.cs
- SessionEndingCancelEventArgs.cs
- XmlAnyElementAttribute.cs
- AbstractSvcMapFileLoader.cs
- SpAudioStreamWrapper.cs
- WebPartCancelEventArgs.cs
- externdll.cs
- IdleTimeoutMonitor.cs
- CqlGenerator.cs
- HttpServerUtilityWrapper.cs
- CreateUserWizardDesigner.cs
- TrustManager.cs
- TypeSystem.cs
- XmlNamespaceManager.cs
- StatusBarPanelClickEvent.cs
- COSERVERINFO.cs
- MergablePropertyAttribute.cs
- ExtensionQuery.cs
- HttpCookiesSection.cs
- DataStreams.cs
- CollectionConverter.cs
- DataPagerFieldCommandEventArgs.cs
- ReaderWriterLockWrapper.cs
- DiscoveryViaBehavior.cs
- DragDrop.cs
- FontNameConverter.cs
- SiteMapDataSourceView.cs
- Win32MouseDevice.cs
- BindStream.cs
- ExtensibleClassFactory.cs
- BamlLocalizableResourceKey.cs
- Tuple.cs
- PreviewKeyDownEventArgs.cs
- DesignTimeParseData.cs
- Color.cs
- SqlUtil.cs
- WebControlAdapter.cs
- MissingMemberException.cs
- DateTimeOffsetConverter.cs
- ToolTip.cs
- DesignBindingPicker.cs
- ZipIOLocalFileHeader.cs
- AnnotationComponentManager.cs
- ToolStripItemImageRenderEventArgs.cs
- FixedStringLookup.cs
- ContextActivityUtils.cs
- VoiceObjectToken.cs
- SizeChangedInfo.cs
- ProjectedSlot.cs
- DiagnosticTraceSource.cs
- Padding.cs
- NotifyInputEventArgs.cs
- TextLineBreak.cs
- FilePrompt.cs
- DataGridViewComboBoxCell.cs
- AvTrace.cs
- TreeNodeSelectionProcessor.cs
- ScriptIgnoreAttribute.cs
- TextDecorationCollection.cs
- TargetControlTypeAttribute.cs
- EntityCommandDefinition.cs
- GroupItem.cs
- Rect3D.cs
- dsa.cs
- Error.cs
- MatrixConverter.cs
- RangeValidator.cs
- PlanCompiler.cs
- LateBoundBitmapDecoder.cs
- PaperSource.cs
- DataBoundControlAdapter.cs