Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ComponentModel / COM2Interop / COM2ExtendedUITypeEditor.cs / 1 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Bits.cs
- XmlEncoding.cs
- ObjectItemLoadingSessionData.cs
- followingsibling.cs
- XmlAttributeAttribute.cs
- xml.cs
- Exceptions.cs
- WebBrowserPermission.cs
- HMACSHA512.cs
- ListBoxItemWrapperAutomationPeer.cs
- DrawingGroup.cs
- SoapRpcServiceAttribute.cs
- DWriteFactory.cs
- ReadOnlyDataSourceView.cs
- WmlMobileTextWriter.cs
- xsdvalidator.cs
- WindowHideOrCloseTracker.cs
- AdornerLayer.cs
- MessageSecurityOverTcpElement.cs
- ExternalCalls.cs
- SQLString.cs
- StylusSystemGestureEventArgs.cs
- DnsPermission.cs
- QueryContinueDragEventArgs.cs
- SymbolTable.cs
- ImageIndexConverter.cs
- ObjectListComponentEditor.cs
- WizardForm.cs
- EmptyEnumerator.cs
- SoapAttributes.cs
- OLEDB_Enum.cs
- TextElementEnumerator.cs
- SortExpressionBuilder.cs
- ListControl.cs
- RtfNavigator.cs
- HostedTransportConfigurationBase.cs
- EntityRecordInfo.cs
- ToolBarPanel.cs
- Attribute.cs
- MsmqElementBase.cs
- sqlstateclientmanager.cs
- ContextMenuService.cs
- XmlSchemaComplexType.cs
- SerializerProvider.cs
- LiteralControl.cs
- DataContractSerializer.cs
- GridPatternIdentifiers.cs
- DescendentsWalkerBase.cs
- DefaultTextStore.cs
- BuildProviderCollection.cs
- CircleHotSpot.cs
- CollectionChangedEventManager.cs
- ApplicationDirectory.cs
- WhileDesigner.cs
- WindowsListViewSubItem.cs
- DataSetMappper.cs
- XmlMembersMapping.cs
- DataGridViewCell.cs
- SwitchElementsCollection.cs
- Model3D.cs
- AuthenticatingEventArgs.cs
- JsonQNameDataContract.cs
- precedingquery.cs
- EdgeModeValidation.cs
- OdbcFactory.cs
- HttpGetClientProtocol.cs
- ArgumentException.cs
- Base64Encoding.cs
- DependencyPropertyKind.cs
- EdmComplexPropertyAttribute.cs
- CdpEqualityComparer.cs
- Camera.cs
- RayHitTestParameters.cs
- Wildcard.cs
- DrawingContextDrawingContextWalker.cs
- SqlConnectionString.cs
- TextLineResult.cs
- AccessText.cs
- ActivityXRefPropertyEditor.cs
- KoreanCalendar.cs
- AppSecurityManager.cs
- TableParagraph.cs
- HtmlTable.cs
- TextComposition.cs
- StringStorage.cs
- SudsParser.cs
- TransformValueSerializer.cs
- AnimationClockResource.cs
- ReferenceSchema.cs
- MeshGeometry3D.cs
- EventWaitHandle.cs
- EdgeProfileValidation.cs
- DataGridViewButtonCell.cs
- PipeStream.cs
- WebBrowserNavigatedEventHandler.cs
- WindowsAuthenticationEventArgs.cs
- RelOps.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- SessionStateSection.cs
- WindowsTokenRoleProvider.cs