Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Messaging / System / Messaging / Design / QueuePathEditor.cs / 1305376 / QueuePathEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Messaging.Design { using System; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms; using System.Windows.Forms.ComponentModel; using System.Windows.Forms.Design; using System.ComponentModel; using System.ComponentModel.Design; using System.Messaging; ////// /// // permissions demanded by parent class [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] public class QueuePathEditor : UITypeEditor { ///[To be supplied.] ////// /// 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 (provider != null) { IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)); if (edSvc != null) { QueuePathDialog dialog = new QueuePathDialog(provider); MessageQueue queue = null; if (value is MessageQueue) queue = (MessageQueue)value; else if (value is string) queue = new MessageQueue((string)value); else if (value != null) return value; if (queue != null) dialog.SelectQueue(queue); IDesignerHost host = (IDesignerHost)provider.GetService(typeof(IDesignerHost)); DesignerTransaction trans = null; if (host != null) trans = host.CreateTransaction(); try { if ((context == null || context.OnComponentChanging()) && edSvc.ShowDialog(dialog) == DialogResult.OK) { if (dialog.Path != String.Empty) { if (context.Instance is MessageQueue || context.Instance is MessageQueueInstaller) value = dialog.Path; else { value = MessageQueueConverter.GetFromCache(dialog.Path); if (value == null) { value = new MessageQueue(dialog.Path); MessageQueueConverter.AddToCache((MessageQueue)value); if (context != null) context.Container.Add((IComponent)value); } } context.OnComponentChanged(); } } } finally { if (trans != null) { trans.Commit(); } } } } return value; } ////// /// Retrieves the editing style of the Edit method. If the method /// is not supported, this will return None. /// public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { return UITypeEditorEditStyle.Modal; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Messaging.Design { using System; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms; using System.Windows.Forms.ComponentModel; using System.Windows.Forms.Design; using System.ComponentModel; using System.ComponentModel.Design; using System.Messaging; ////// /// // permissions demanded by parent class [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] public class QueuePathEditor : UITypeEditor { ///[To be supplied.] ////// /// 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 (provider != null) { IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)); if (edSvc != null) { QueuePathDialog dialog = new QueuePathDialog(provider); MessageQueue queue = null; if (value is MessageQueue) queue = (MessageQueue)value; else if (value is string) queue = new MessageQueue((string)value); else if (value != null) return value; if (queue != null) dialog.SelectQueue(queue); IDesignerHost host = (IDesignerHost)provider.GetService(typeof(IDesignerHost)); DesignerTransaction trans = null; if (host != null) trans = host.CreateTransaction(); try { if ((context == null || context.OnComponentChanging()) && edSvc.ShowDialog(dialog) == DialogResult.OK) { if (dialog.Path != String.Empty) { if (context.Instance is MessageQueue || context.Instance is MessageQueueInstaller) value = dialog.Path; else { value = MessageQueueConverter.GetFromCache(dialog.Path); if (value == null) { value = new MessageQueue(dialog.Path); MessageQueueConverter.AddToCache((MessageQueue)value); if (context != null) context.Container.Add((IComponent)value); } } context.OnComponentChanged(); } } } finally { if (trans != null) { trans.Commit(); } } } } return value; } ////// /// Retrieves the editing style of the Edit method. If the method /// is not supported, this will return None. /// public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { return UITypeEditorEditStyle.Modal; } } } // 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
- CompilerTypeWithParams.cs
- XmlChildEnumerator.cs
- printdlgexmarshaler.cs
- OdbcCommandBuilder.cs
- KnownColorTable.cs
- DataListDesigner.cs
- ComponentCommands.cs
- ReadWriteSpinLock.cs
- Ticks.cs
- AsyncSerializedWorker.cs
- DataGridViewHeaderCell.cs
- WmlObjectListAdapter.cs
- Pen.cs
- documentsequencetextcontainer.cs
- HttpPostedFile.cs
- IPEndPointCollection.cs
- SignatureHelper.cs
- DataListItem.cs
- BoolLiteral.cs
- BitmapEffectGeneralTransform.cs
- Clause.cs
- ClipboardProcessor.cs
- EnglishPluralizationService.cs
- StrongBox.cs
- IdentityReference.cs
- DetailsView.cs
- AttributeUsageAttribute.cs
- DisplayNameAttribute.cs
- ECDiffieHellmanCngPublicKey.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- MetadataItemEmitter.cs
- XamlPointCollectionSerializer.cs
- XPathMessageFilterElementComparer.cs
- SpeechAudioFormatInfo.cs
- OdbcParameterCollection.cs
- TraceData.cs
- RadioButtonRenderer.cs
- FileLevelControlBuilderAttribute.cs
- QuerySettings.cs
- IndexObject.cs
- DynamicField.cs
- AttributeCollection.cs
- DefaultAsyncDataDispatcher.cs
- TransformValueSerializer.cs
- InnerItemCollectionView.cs
- ByteRangeDownloader.cs
- GatewayIPAddressInformationCollection.cs
- StylusPlugin.cs
- Simplifier.cs
- XmlSchemaProviderAttribute.cs
- NonBatchDirectoryCompiler.cs
- DeclaredTypeElementCollection.cs
- BitmapSource.cs
- OperationResponse.cs
- ImageSourceConverter.cs
- NativeRightsManagementAPIsStructures.cs
- AuthenticationServiceManager.cs
- NetworkInformationPermission.cs
- WsdlImporter.cs
- CompilationLock.cs
- SspiSecurityToken.cs
- ReachDocumentPageSerializerAsync.cs
- ParameterToken.cs
- DocumentXPathNavigator.cs
- StrokeRenderer.cs
- DoubleLinkListEnumerator.cs
- OdbcRowUpdatingEvent.cs
- DropDownList.cs
- AspNetHostingPermission.cs
- SystemIPv4InterfaceProperties.cs
- CustomTypeDescriptor.cs
- ThemeConfigurationDialog.cs
- XmlConvert.cs
- AudioBase.cs
- CompleteWizardStep.cs
- BitmapEffectrendercontext.cs
- IdentityNotMappedException.cs
- PopOutPanel.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- SystemIPGlobalProperties.cs
- EntitySetBaseCollection.cs
- TextParagraph.cs
- GridItemProviderWrapper.cs
- SourceInterpreter.cs
- PrintPageEvent.cs
- DecoratedNameAttribute.cs
- CustomBindingElement.cs
- TreeWalker.cs
- ReadOnlyMetadataCollection.cs
- CommonProperties.cs
- XmlDictionaryReader.cs
- XsdDataContractImporter.cs
- WebBrowserHelper.cs
- Module.cs
- XmlNodeList.cs
- TableHeaderCell.cs
- ProxyGenerationError.cs
- NativeCppClassAttribute.cs
- RoamingStoreFileUtility.cs
- EditingCoordinator.cs