Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / DesignerContextDescriptor.cs / 1 / DesignerContextDescriptor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System; using System.Design; using System.ComponentModel; using System.Windows.Forms; using System.ComponentModel.Design; using System.Drawing; using System.Windows.Forms.Design.Behavior; using System.Drawing.Design; using System.Diagnostics; using System.Collections; using System.Runtime.InteropServices; using System.Diagnostics.CodeAnalysis; ////// // --------------------------------------------------------------------------------- // Class Implemented for opening the ImageEditor ... // // This class is replaces the ContextDescriptor in ToolStripItem designer. // // DesignerContextDescriptor implements the IWindowsFormsEditorService which is required // to open the ImageEditor .. Hence the need for this Implementation //----------------------------------------------------------------------------------- /// internal class DesignerContextDescriptor : IWindowsFormsEditorService, ITypeDescriptorContext { private Component _component; private PropertyDescriptor _propertyDescriptor; private IDesignerHost _host; // // Constructor // ///[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] public DesignerContextDescriptor(Component component, PropertyDescriptor imageProperty, IDesignerHost host) { _component = component; _propertyDescriptor = imageProperty; _host = host; } /// /// /// Gets called thru the TemplateNode to open the ImageEditor. /// ///// Called through reflection [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] public Image OpenImageCollection() { object propertyValue = _propertyDescriptor.GetValue(_component); if (_propertyDescriptor != null) { Image image = null; UITypeEditor itemsEditor = _propertyDescriptor.GetEditor(typeof(UITypeEditor)) as UITypeEditor; Debug.Assert(itemsEditor != null, "Didn't get a collection editor for type '" + _propertyDescriptor.PropertyType.FullName + "'"); if (itemsEditor != null) { image = (Image)itemsEditor.EditValue(this, (IServiceProvider)this, propertyValue); } if (image != null) { return image; } } // Always Return old Image if Image is not changed... return (Image)propertyValue; } IContainer ITypeDescriptorContext.Container { get { return null; } } object ITypeDescriptorContext.Instance { get { return _component; } } PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor { get { return _propertyDescriptor; } } void ITypeDescriptorContext.OnComponentChanged() { } bool ITypeDescriptorContext.OnComponentChanging() { return false; } /// /// Self-explanitory interface impl. /// object IServiceProvider.GetService(Type serviceType) { if (serviceType == typeof(IWindowsFormsEditorService)) { return this; } else { return _host.GetService(serviceType); } } ////// Self-explanitory interface impl. /// void IWindowsFormsEditorService.CloseDropDown() { // we'll never be called to do this. // Debug.Fail("NOTIMPL"); return; } ////// Self-explanitory interface impl. /// void IWindowsFormsEditorService.DropDownControl(Control control) { // nope, sorry // Debug.Fail("NOTIMPL"); return; } ////// Self-explanitory interface impl. /// System.Windows.Forms.DialogResult IWindowsFormsEditorService.ShowDialog(Form dialog) { IntPtr priorFocus = UnsafeNativeMethods.GetFocus(); DialogResult result; IUIService uiSvc = (IUIService)((IServiceProvider)this).GetService(typeof(IUIService)); if (uiSvc != null) { result = uiSvc.ShowDialog(dialog); } else { result = dialog.ShowDialog(_component as IWin32Window); } if (priorFocus != IntPtr.Zero) { UnsafeNativeMethods.SetFocus(new HandleRef(null, priorFocus)); } return result; } } } // 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
- TabControlAutomationPeer.cs
- SplitterEvent.cs
- DBParameter.cs
- SerializationEventsCache.cs
- MarginCollapsingState.cs
- UnionExpr.cs
- PathGeometry.cs
- WindowsSlider.cs
- OdbcConnectionFactory.cs
- XslVisitor.cs
- IOException.cs
- UpdatableWrapper.cs
- RankException.cs
- TemplateInstanceAttribute.cs
- PersonalizationEntry.cs
- Trace.cs
- NameSpaceExtractor.cs
- BypassElementCollection.cs
- RunWorkerCompletedEventArgs.cs
- CodeMemberProperty.cs
- UInt16.cs
- MemberAccessException.cs
- InlinedAggregationOperator.cs
- CustomAttributeFormatException.cs
- FormatterServices.cs
- SelectingProviderEventArgs.cs
- SoapObjectInfo.cs
- TextProviderWrapper.cs
- Shared.cs
- DynamicValueConverter.cs
- ThreadAttributes.cs
- ActivationServices.cs
- ScopelessEnumAttribute.cs
- ExpressionConverter.cs
- EpmSyndicationContentSerializer.cs
- ChtmlLinkAdapter.cs
- MexServiceChannelBuilder.cs
- ConfigXmlElement.cs
- ObfuscationAttribute.cs
- QilInvokeLateBound.cs
- SmiEventSink.cs
- Range.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- PasswordBox.cs
- InternalRelationshipCollection.cs
- Knowncolors.cs
- DiagnosticTraceSource.cs
- SystemUnicastIPAddressInformation.cs
- Int64KeyFrameCollection.cs
- RemoteCryptoDecryptRequest.cs
- XmlNavigatorFilter.cs
- BookmarkCallbackWrapper.cs
- SystemDropShadowChrome.cs
- GatewayDefinition.cs
- BitmapEffectGeneralTransform.cs
- MimeObjectFactory.cs
- DataGridViewCellStateChangedEventArgs.cs
- SQLByteStorage.cs
- documentsequencetextcontainer.cs
- CellCreator.cs
- MiniMapControl.xaml.cs
- ConfigurationManager.cs
- InvalidWMPVersionException.cs
- SafeCertificateStore.cs
- DependencyPropertyHelper.cs
- ProcessHostFactoryHelper.cs
- XmlBinaryReaderSession.cs
- _ChunkParse.cs
- QilExpression.cs
- Interop.cs
- PropertyPathWorker.cs
- SoapIncludeAttribute.cs
- BorderGapMaskConverter.cs
- relpropertyhelper.cs
- TreeNode.cs
- CodeIdentifiers.cs
- WebPermission.cs
- OleDbConnectionInternal.cs
- StateDesignerConnector.cs
- Int16.cs
- XmlSchemaSimpleContentExtension.cs
- UiaCoreTypesApi.cs
- TextTrailingCharacterEllipsis.cs
- ClientConfigPaths.cs
- EventNotify.cs
- InstanceCompleteException.cs
- WMIGenerator.cs
- DynamicEntity.cs
- WebBrowserUriTypeConverter.cs
- TextAutomationPeer.cs
- ClientRolePrincipal.cs
- WebPartPersonalization.cs
- ConfigXmlText.cs
- ListControlBuilder.cs
- SendingRequestEventArgs.cs
- SendAgentStatusRequest.cs
- HttpListenerRequest.cs
- ErrorFormatter.cs
- FlowDocumentFormatter.cs
- XmlNode.cs