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
- Message.cs
- ImageFormatConverter.cs
- sqlnorm.cs
- ComponentChangedEvent.cs
- VirtualizedContainerService.cs
- Select.cs
- MSAANativeProvider.cs
- Point3DCollection.cs
- SignedPkcs7.cs
- PageAsyncTaskManager.cs
- ChangeBlockUndoRecord.cs
- XPathDocumentNavigator.cs
- BasicCommandTreeVisitor.cs
- CssClassPropertyAttribute.cs
- PassportAuthenticationEventArgs.cs
- storepermission.cs
- TextModifierScope.cs
- DictionaryBase.cs
- WebPartConnectVerb.cs
- MaskedTextBox.cs
- coordinator.cs
- UInt32.cs
- ColumnWidthChangingEvent.cs
- PropertyRecord.cs
- ChtmlCalendarAdapter.cs
- ListenerAdapter.cs
- MonthCalendar.cs
- ValueUtilsSmi.cs
- TargetConverter.cs
- DaylightTime.cs
- Native.cs
- PointUtil.cs
- FixedSOMContainer.cs
- IdentityReference.cs
- ControlCachePolicy.cs
- Currency.cs
- safelink.cs
- RepeatButtonAutomationPeer.cs
- PropertyChangeTracker.cs
- PenThreadWorker.cs
- SocketManager.cs
- ConfigurationSectionCollection.cs
- ScrollProperties.cs
- InputReportEventArgs.cs
- FormViewInsertEventArgs.cs
- XmlTextReader.cs
- AddressingVersion.cs
- DbProviderFactories.cs
- String.cs
- WebHttpBindingCollectionElement.cs
- WindowsBrush.cs
- RectangleF.cs
- Misc.cs
- CoTaskMemSafeHandle.cs
- OSFeature.cs
- OneWayElement.cs
- SplitterCancelEvent.cs
- DateTimeEditor.cs
- UnitControl.cs
- ImportRequest.cs
- RenderingEventArgs.cs
- MemberJoinTreeNode.cs
- IResourceProvider.cs
- GlobalAllocSafeHandle.cs
- SafeHandle.cs
- NavigationCommands.cs
- Listbox.cs
- AsymmetricSignatureFormatter.cs
- VSWCFServiceContractGenerator.cs
- RectangleGeometry.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ComponentEditorPage.cs
- AssertSection.cs
- MultiView.cs
- StoreContentChangedEventArgs.cs
- DataGridViewComboBoxCell.cs
- FormsAuthenticationEventArgs.cs
- TextRunCacheImp.cs
- ValidationEventArgs.cs
- MDIClient.cs
- ServiceModelTimeSpanValidator.cs
- RangeContentEnumerator.cs
- DtrList.cs
- ReadOnlyDataSource.cs
- TypedElement.cs
- RTTypeWrapper.cs
- SystemThemeKey.cs
- DesignerDataTable.cs
- MemoryMappedFileSecurity.cs
- ControlEvent.cs
- WindowsScroll.cs
- Input.cs
- MaskedTextProvider.cs
- FileUpload.cs
- HttpListenerException.cs
- AdornedElementPlaceholder.cs
- SystemResourceKey.cs
- WeakRefEnumerator.cs
- SingleAnimation.cs
- Span.cs