Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ComponentModel / COM2Interop / COM2ExtendedUITypeEditor.cs / 1305376 / COM2ExtendedUITypeEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Drawing.Design.Com2ExtendedUITypeEditor..ctor(System.Type)")] /* */ namespace System.Drawing.Design { using System.Diagnostics; using System.Collections; using Microsoft.Win32; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Drawing.Design; ////// /// /// internal class Com2ExtendedUITypeEditor : UITypeEditor { private UITypeEditor innerEditor; public Com2ExtendedUITypeEditor(UITypeEditor baseTypeEditor) { this.innerEditor = baseTypeEditor; } public Com2ExtendedUITypeEditor(Type baseType) { this.innerEditor = (UITypeEditor)TypeDescriptor.GetEditor(baseType, typeof(UITypeEditor)); } public UITypeEditor InnerEditor { get { return innerEditor; } } ///Provides an editor that provides a way to visually edit the values of a COM2 /// type. ////// /// Edits the given object value using the editor style provided by /// GetEditorStyle. A service provider is provided so that any /// required editing services can be obtained. /// public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { if (innerEditor != null) { return innerEditor.EditValue(context, provider, value); } else { return base.EditValue(context, provider, value); } } ////// /// Determines if this editor supports the painting of a representation /// of an object's value. /// public override bool GetPaintValueSupported(ITypeDescriptorContext context) { if (innerEditor != null) { return innerEditor.GetPaintValueSupported(context); } return base.GetPaintValueSupported(context); } ////// /// Retrieves the editing style of the Edit method. If the method /// is not supported, this will return None. /// public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { if (innerEditor != null) { return innerEditor.GetEditStyle(context); } return base.GetEditStyle(context); } ////// /// Paints a representative value of the given object to the provided /// canvas. Painting should be done within the boundaries of the /// provided rectangle. /// public override void PaintValue(PaintValueEventArgs e) { if (innerEditor != null) { innerEditor.PaintValue(e); } base.PaintValue(e); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Drawing.Design.Com2ExtendedUITypeEditor..ctor(System.Type)")] /* */ namespace System.Drawing.Design { using System.Diagnostics; using System.Collections; using Microsoft.Win32; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Drawing.Design; ////// /// /// internal class Com2ExtendedUITypeEditor : UITypeEditor { private UITypeEditor innerEditor; public Com2ExtendedUITypeEditor(UITypeEditor baseTypeEditor) { this.innerEditor = baseTypeEditor; } public Com2ExtendedUITypeEditor(Type baseType) { this.innerEditor = (UITypeEditor)TypeDescriptor.GetEditor(baseType, typeof(UITypeEditor)); } public UITypeEditor InnerEditor { get { return innerEditor; } } ///Provides an editor that provides a way to visually edit the values of a COM2 /// type. ////// /// Edits the given object value using the editor style provided by /// GetEditorStyle. A service provider is provided so that any /// required editing services can be obtained. /// public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { if (innerEditor != null) { return innerEditor.EditValue(context, provider, value); } else { return base.EditValue(context, provider, value); } } ////// /// Determines if this editor supports the painting of a representation /// of an object's value. /// public override bool GetPaintValueSupported(ITypeDescriptorContext context) { if (innerEditor != null) { return innerEditor.GetPaintValueSupported(context); } return base.GetPaintValueSupported(context); } ////// /// Retrieves the editing style of the Edit method. If the method /// is not supported, this will return None. /// public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { if (innerEditor != null) { return innerEditor.GetEditStyle(context); } return base.GetEditStyle(context); } ////// /// Paints a representative value of the given object to the provided /// canvas. Painting should be done within the boundaries of the /// provided rectangle. /// public override void PaintValue(PaintValueEventArgs e) { if (innerEditor != null) { innerEditor.PaintValue(e); } base.PaintValue(e); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ImageDrawing.cs
- TabControlDesigner.cs
- CodeTypeMember.cs
- EmptyEnumerable.cs
- PrinterResolution.cs
- XPathMessageFilterElement.cs
- SystemGatewayIPAddressInformation.cs
- FtpWebResponse.cs
- XamlUtilities.cs
- DataBoundLiteralControl.cs
- EqualityArray.cs
- ColorMatrix.cs
- SafeNativeMethods.cs
- TcpTransportBindingElement.cs
- MetadataUtil.cs
- BitmapEffectCollection.cs
- ButtonChrome.cs
- ExpressionBuilder.cs
- SocketElement.cs
- UnsafeNativeMethods.cs
- ArrangedElementCollection.cs
- Drawing.cs
- DBCSCodePageEncoding.cs
- DataTableMappingCollection.cs
- RoleManagerModule.cs
- XmlEnumAttribute.cs
- DtdParser.cs
- ColorConverter.cs
- AsyncDataRequest.cs
- StreamingContext.cs
- PlatformCulture.cs
- XmlWhitespace.cs
- StringBlob.cs
- ConstrainedDataObject.cs
- DomNameTable.cs
- CreateUserWizardStep.cs
- FocusTracker.cs
- ServiceOperationInvoker.cs
- Persist.cs
- ZoneIdentityPermission.cs
- DataKey.cs
- Label.cs
- GlyphInfoList.cs
- AppPool.cs
- ObjectContextServiceProvider.cs
- HtmlString.cs
- PathFigure.cs
- ClientFactory.cs
- DiscoveryUtility.cs
- BitmapEncoder.cs
- WorkflowQueuingService.cs
- ElasticEase.cs
- _NTAuthentication.cs
- XamlPathDataSerializer.cs
- OleDbParameter.cs
- DefaultAuthorizationContext.cs
- TargetException.cs
- Span.cs
- UTF8Encoding.cs
- COMException.cs
- System.Data_BID.cs
- NameScope.cs
- ColorContextHelper.cs
- FontDriver.cs
- baseaxisquery.cs
- SQLBinary.cs
- HttpsChannelListener.cs
- PrivilegeNotHeldException.cs
- DelimitedListTraceListener.cs
- ActivationServices.cs
- Attachment.cs
- PrintControllerWithStatusDialog.cs
- FontFaceLayoutInfo.cs
- XmlBinaryReader.cs
- CreateCardRequest.cs
- GenericsInstances.cs
- SchemaNames.cs
- FormViewRow.cs
- DecoderBestFitFallback.cs
- SystemIPGlobalProperties.cs
- SqlFacetAttribute.cs
- ContractCodeDomInfo.cs
- SetStoryboardSpeedRatio.cs
- BamlResourceContent.cs
- ResourceProperty.cs
- HttpDictionary.cs
- Button.cs
- Automation.cs
- Object.cs
- TableLayoutSettings.cs
- EntityDataSourceUtil.cs
- XmlDataProvider.cs
- validationstate.cs
- HistoryEventArgs.cs
- TrackingStringDictionary.cs
- CachedPathData.cs
- DataGridRow.cs
- WebHttpDispatchOperationSelector.cs
- MarkupCompiler.cs
- OutputScopeManager.cs