Code:
/ FX-1434 / FX-1434 / 1.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
- Parser.cs
- DispatcherProcessingDisabled.cs
- DataGridRow.cs
- GeneratedContractType.cs
- DnsEndpointIdentity.cs
- FileBasedResourceGroveler.cs
- UserUseLicenseDictionaryLoader.cs
- Object.cs
- PasswordTextNavigator.cs
- CaseInsensitiveHashCodeProvider.cs
- UnitySerializationHolder.cs
- LinkButton.cs
- BindingList.cs
- ApplicationFileCodeDomTreeGenerator.cs
- BrushConverter.cs
- SmtpMail.cs
- XhtmlBasicPanelAdapter.cs
- ContextMarshalException.cs
- FontCacheUtil.cs
- CustomErrorCollection.cs
- ValidationEventArgs.cs
- FrugalList.cs
- EnvelopedPkcs7.cs
- TextServicesCompartmentContext.cs
- ParameterInfo.cs
- ContentDisposition.cs
- QuaternionAnimationBase.cs
- AttributeQuery.cs
- TdsParserHelperClasses.cs
- RegexParser.cs
- TabItemAutomationPeer.cs
- Stroke.cs
- SQLMembershipProvider.cs
- ViewBase.cs
- PathParser.cs
- DoubleAnimationUsingPath.cs
- HtmlShim.cs
- GlyphElement.cs
- VisualTarget.cs
- Figure.cs
- DbConnectionPoolIdentity.cs
- RunInstallerAttribute.cs
- TypedRowHandler.cs
- WebPartUtil.cs
- Identity.cs
- JsonReaderDelegator.cs
- StyleBamlTreeBuilder.cs
- MachineKey.cs
- WindowsProgressbar.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- DynamicPropertyHolder.cs
- ScaleTransform3D.cs
- UpdatePanelTriggerCollection.cs
- InvalidComObjectException.cs
- XamlPoint3DCollectionSerializer.cs
- FullTextLine.cs
- InternalConfigEventArgs.cs
- DispatcherTimer.cs
- ConfigurationSectionHelper.cs
- MarkedHighlightComponent.cs
- DataTable.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- EntityDataSourceColumn.cs
- DoubleSumAggregationOperator.cs
- HttpHeaderCollection.cs
- StateMachineSubscription.cs
- FileInfo.cs
- CodeLinePragma.cs
- SqlDataSourceCommandEventArgs.cs
- ComponentManagerBroker.cs
- ContractSearchPattern.cs
- WebPartConnectionsConnectVerb.cs
- FontSource.cs
- GlyphingCache.cs
- Italic.cs
- SqlLiftWhereClauses.cs
- RootProfilePropertySettingsCollection.cs
- EncoderParameter.cs
- HitTestWithGeometryDrawingContextWalker.cs
- HashCoreRequest.cs
- InputLanguageCollection.cs
- BuildProvidersCompiler.cs
- SoapTransportImporter.cs
- BamlResourceSerializer.cs
- NotifyInputEventArgs.cs
- InvalidCardException.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- WorkflowRuntimeService.cs
- ErrorTableItemStyle.cs
- HttpWriter.cs
- Win32Interop.cs
- COSERVERINFO.cs
- ValidationRuleCollection.cs
- SharedPersonalizationStateInfo.cs
- ConfigXmlCDataSection.cs
- ContainerVisual.cs
- ArcSegment.cs
- RedistVersionInfo.cs
- RenamedEventArgs.cs
- SerializerDescriptor.cs