Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / EditorServiceContext.cs / 1 / EditorServiceContext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms.Design.Behavior; using System.Drawing; using System.Drawing.Design; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; ////// /// internal class EditorServiceContext : IWindowsFormsEditorService, ITypeDescriptorContext { private ComponentDesigner _designer; private IComponentChangeService _componentChangeSvc; private PropertyDescriptor _targetProperty; [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal EditorServiceContext(ComponentDesigner designer) { this._designer = designer; } internal EditorServiceContext(ComponentDesigner designer, PropertyDescriptor prop) { this._designer = designer; this._targetProperty = prop; if (prop == null) { prop = TypeDescriptor.GetDefaultProperty(designer.Component); if (prop != null && typeof(ICollection).IsAssignableFrom(prop.PropertyType)) { _targetProperty = prop; } } Debug.Assert(_targetProperty != null, "Need PropertyDescriptor for ICollection property to associate collectoin edtior with."); } internal EditorServiceContext(ComponentDesigner designer, PropertyDescriptor prop, string newVerbText) : this(designer, prop) { Debug.Assert(!string.IsNullOrEmpty(newVerbText), "newVerbText cannot be null or empty"); _designer.Verbs.Add(new DesignerVerb(newVerbText, new EventHandler(this.OnEditItems))); } public static object EditValue(ComponentDesigner designer, object objectToChange, string propName) { // Get PropertyDescriptor PropertyDescriptor descriptor = TypeDescriptor.GetProperties(objectToChange)[propName]; // Create a Context EditorServiceContext context = new EditorServiceContext(designer, descriptor); // Get Editor UITypeEditor editor = descriptor.GetEditor(typeof(UITypeEditor)) as UITypeEditor; // Get value to edit object value = descriptor.GetValue(objectToChange); // Edit value object newValue = editor.EditValue(context, context, value); if (newValue != value) { try { descriptor.SetValue(objectToChange, newValue); } catch (CheckoutException) { } } return newValue; } ////// Provides an implementation of IWindowsFormsEditorService and ITypeDescriptorContext. /// Also provides a static method to invoke a UITypeEditor given a designer, an object /// and a property name. /// ////// Our caching property for the IComponentChangeService /// private IComponentChangeService ChangeService { get { if (_componentChangeSvc == null) { _componentChangeSvc = (IComponentChangeService)((IServiceProvider)this).GetService(typeof(IComponentChangeService)); } return _componentChangeSvc; } } ////// Self-explanitory interface impl. /// IContainer ITypeDescriptorContext.Container { get { if (_designer.Component.Site != null) { return _designer.Component.Site.Container; } return null; } } ////// Self-explanitory interface impl. /// void ITypeDescriptorContext.OnComponentChanged() { ChangeService.OnComponentChanged(_designer.Component, _targetProperty, null, null); } ////// Self-explanitory interface impl. /// bool ITypeDescriptorContext.OnComponentChanging() { try { ChangeService.OnComponentChanging(_designer.Component, _targetProperty); } catch (CheckoutException checkoutException) { if (checkoutException == CheckoutException.Canceled) { return false; } throw; } return true; } ////// Self-explanitory interface impl. /// object ITypeDescriptorContext.Instance { get { return _designer.Component; } } ////// Self-explanitory interface impl. /// PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor { get { return _targetProperty; } } ////// Self-explanitory interface impl. /// object IServiceProvider.GetService(Type serviceType) { if (serviceType == typeof(ITypeDescriptorContext) || serviceType == typeof(IWindowsFormsEditorService)) { return this; } if (_designer.Component.Site != null) { return _designer.Component.Site.GetService(serviceType); } return null; } ////// 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) { IUIService uiSvc = (IUIService)((IServiceProvider)this).GetService(typeof(IUIService)); if (uiSvc != null) { return uiSvc.ShowDialog(dialog); } else { return dialog.ShowDialog(_designer.Component as IWin32Window); } } ////// When the verb is invoked, use all the stuff above to show the dialog, etc. /// private void OnEditItems(object sender, EventArgs e) { object propertyValue = _targetProperty.GetValue(_designer.Component); if (propertyValue == null) { return; } CollectionEditor itemsEditor = TypeDescriptor.GetEditor(propertyValue, typeof(UITypeEditor)) as CollectionEditor; Debug.Assert(itemsEditor != null, "Didn't get a collection editor for type '" + _targetProperty.PropertyType.FullName + "'"); if (itemsEditor != null) { itemsEditor.EditValue(this, this, propertyValue); } } } } // 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
- RetrieveVirtualItemEventArgs.cs
- Solver.cs
- ButtonColumn.cs
- XmlNotation.cs
- SerializationAttributes.cs
- StringFormat.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- Memoizer.cs
- Style.cs
- CatalogZone.cs
- EmptyStringExpandableObjectConverter.cs
- UrlMapping.cs
- Membership.cs
- EncodingTable.cs
- FlowDocumentPage.cs
- TextParagraphProperties.cs
- XmlSerializerAssemblyAttribute.cs
- TraceHandler.cs
- ASCIIEncoding.cs
- PassportAuthentication.cs
- OperationAbortedException.cs
- MembershipSection.cs
- RequestFactory.cs
- WebBrowserNavigatedEventHandler.cs
- ProfileGroupSettingsCollection.cs
- BridgeDataRecord.cs
- TranslateTransform3D.cs
- BreakRecordTable.cs
- DbConnectionPoolIdentity.cs
- ButtonBaseAdapter.cs
- HtmlEncodedRawTextWriter.cs
- PointAnimationBase.cs
- KeyMatchBuilder.cs
- RotateTransform.cs
- SecurityElement.cs
- XPathNodeList.cs
- WebPartDescriptionCollection.cs
- EnvironmentPermission.cs
- DataTableCollection.cs
- ObjectTag.cs
- DebugHandleTracker.cs
- FormsAuthenticationModule.cs
- ProfilePropertySettingsCollection.cs
- ListViewItemEventArgs.cs
- HttpWebRequest.cs
- PersonalizationStateQuery.cs
- HealthMonitoringSection.cs
- EnterpriseServicesHelper.cs
- AdjustableArrowCap.cs
- TransformerConfigurationWizardBase.cs
- WindowsFont.cs
- RuntimeConfig.cs
- CompositeTypefaceMetrics.cs
- SingleAnimation.cs
- ContractType.cs
- Point3DCollection.cs
- ReachDocumentReferenceSerializerAsync.cs
- SharedRuntimeState.cs
- CompilerTypeWithParams.cs
- WebPartActionVerb.cs
- LineSegment.cs
- FileDialog.cs
- ExecutionEngineException.cs
- DBBindings.cs
- StatusBarPanel.cs
- TextEmbeddedObject.cs
- ScaleTransform3D.cs
- PrimitiveSchema.cs
- DrawingImage.cs
- GregorianCalendar.cs
- NativeBuffer.cs
- SafeRightsManagementEnvironmentHandle.cs
- ValidatorCompatibilityHelper.cs
- DataGridViewSelectedCellCollection.cs
- RawStylusInputCustomDataList.cs
- QueryOperatorEnumerator.cs
- SystemInfo.cs
- GridViewColumnCollection.cs
- XmlUtilWriter.cs
- ConsoleTraceListener.cs
- TypeSystemProvider.cs
- DesignTimeTemplateParser.cs
- CapabilitiesAssignment.cs
- Evidence.cs
- FacetValueContainer.cs
- EditorPartCollection.cs
- WebControlParameterProxy.cs
- CallSiteBinder.cs
- FontNamesConverter.cs
- FixedTextPointer.cs
- HitTestParameters3D.cs
- HtmlWindowCollection.cs
- SQLBytes.cs
- FaultReason.cs
- Slider.cs
- ColorConvertedBitmap.cs
- OperationExecutionFault.cs
- InputScopeConverter.cs
- DataRelation.cs
- ResourceType.cs