Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / FileNameEditor.cs / 1 / FileNameEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System.Runtime.Serialization.Formatters; using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms; using Microsoft.Win32; ////// /// public class FileNameEditor : UITypeEditor { private OpenFileDialog openFileDialog; ////// Provides an /// editor for filenames. ////// /// 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. /// [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] // everything in this assembly is full trust. public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { Debug.Assert(provider != null, "No service provider; we cannot edit the value"); if (provider != null) { IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)); Debug.Assert(edSvc != null, "No editor service; we cannot edit the value"); if (edSvc != null) { if (openFileDialog == null) { openFileDialog = new OpenFileDialog(); InitializeDialog(openFileDialog); } if (value is string) { openFileDialog.FileName = (string)value; } if (openFileDialog.ShowDialog() == DialogResult.OK) { value = openFileDialog.FileName; } } } return value; } ////// /// [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] // everything in this assembly is full trust. public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { return UITypeEditorEditStyle.Modal; } ///Gets the editing style of the Edit method. If the method /// is not supported, this will return None. ////// /// Initializes the open file dialog when it is created. This gives you /// an opportunity to configure the dialog as you please. The default /// implementation provides a generic file filter and title. /// [SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")] protected virtual void InitializeDialog(OpenFileDialog openFileDialog) { openFileDialog.Filter = SR.GetString(SR.GenericFileFilter); openFileDialog.Title = SR.GetString(SR.GenericOpenFile); } } } // 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
- QilCloneVisitor.cs
- PreProcessor.cs
- WindowPattern.cs
- ToolConsole.cs
- XmlSchemaComplexContent.cs
- SqlConnectionPoolGroupProviderInfo.cs
- XslTransform.cs
- CustomAttributeBuilder.cs
- UniqueConstraint.cs
- StyleCollectionEditor.cs
- NativeMethodsCLR.cs
- BinHexDecoder.cs
- XslAst.cs
- MtomMessageEncodingElement.cs
- WebServiceReceiveDesigner.cs
- DoubleLinkListEnumerator.cs
- Activity.cs
- BufferedGraphicsContext.cs
- DataGridViewComponentPropertyGridSite.cs
- Size.cs
- Not.cs
- CustomTypeDescriptor.cs
- ProxyElement.cs
- WebBaseEventKeyComparer.cs
- ReadOnlyHierarchicalDataSource.cs
- selecteditemcollection.cs
- PtsPage.cs
- _CommandStream.cs
- BaseUriHelper.cs
- CounterCreationData.cs
- RuleRefElement.cs
- Transform.cs
- tooltip.cs
- PermissionSetEnumerator.cs
- ColorMap.cs
- CachedBitmap.cs
- DictionaryEntry.cs
- DataGridViewCellStyleChangedEventArgs.cs
- StreamUpgradeAcceptor.cs
- VectorCollectionConverter.cs
- ListViewSelectEventArgs.cs
- TableRow.cs
- AssociationSetEnd.cs
- VisualStyleInformation.cs
- UrlPath.cs
- KeyFrames.cs
- UIElementIsland.cs
- DictionaryMarkupSerializer.cs
- PopupControlService.cs
- CapabilitiesUse.cs
- ResourceFallbackManager.cs
- BaseHashHelper.cs
- MultitargetUtil.cs
- ModulesEntry.cs
- DbDataSourceEnumerator.cs
- BitmapEffectDrawingContextState.cs
- CaretElement.cs
- SchemaMapping.cs
- ValidatorAttribute.cs
- NewExpression.cs
- DataMemberConverter.cs
- Zone.cs
- Int32Converter.cs
- StylusPointProperties.cs
- cookiecollection.cs
- IntSecurity.cs
- ValidationError.cs
- WindowsSecurityToken.cs
- KnownTypesProvider.cs
- MenuEventArgs.cs
- GreenMethods.cs
- Currency.cs
- Array.cs
- ClientConvert.cs
- AlignmentYValidation.cs
- BasicExpandProvider.cs
- TextBoxBase.cs
- QueueException.cs
- CodeCastExpression.cs
- PromptBuilder.cs
- FileDataSource.cs
- XmlTextReader.cs
- TypeHelper.cs
- DetailsViewUpdatedEventArgs.cs
- ThreadSafeList.cs
- CompositeFontParser.cs
- SmtpNetworkElement.cs
- UnsafeNetInfoNativeMethods.cs
- OutputCacheProfileCollection.cs
- ThreadNeutralSemaphore.cs
- DocumentPropertiesDialog.cs
- DataGridViewCellPaintingEventArgs.cs
- ProgressBar.cs
- Stack.cs
- AbandonedMutexException.cs
- _SpnDictionary.cs
- VirtualizedItemProviderWrapper.cs
- ReadOnlyTernaryTree.cs
- ParameterModifier.cs
- WebServiceData.cs