Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / XmlFileEditor.cs / 1 / XmlFileEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Design; using System.IO; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms.Design; using System.Windows.Forms.ComponentModel; using System.Web.UI.Design.Util; ////// /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public class XmlFileEditor : UITypeEditor { internal FileDialog fileDialog = null; ///Provides an editor for visually picking an XML File. ////// /// 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) { if (fileDialog == null) { fileDialog = new OpenFileDialog(); fileDialog.Title = SR.GetString(SR.XMLFilePicker_Caption); fileDialog.Filter = SR.GetString(SR.XMLFilePicker_Filter); } if (value != null) { fileDialog.FileName = value.ToString(); } if (fileDialog.ShowDialog() == DialogResult.OK) { value = fileDialog.FileName; } } } 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OdbcEnvironment.cs
- ShapeTypeface.cs
- AstNode.cs
- AdCreatedEventArgs.cs
- SQLInt64Storage.cs
- MembershipSection.cs
- MessageQueuePermissionAttribute.cs
- CollectionBuilder.cs
- BitmapCacheBrush.cs
- ValidatorCollection.cs
- StringBlob.cs
- PeerNameRecord.cs
- DispatcherObject.cs
- XmlSchemaProviderAttribute.cs
- XXXOnTypeBuilderInstantiation.cs
- ThrowHelper.cs
- HostSecurityManager.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- ObjectDataSourceView.cs
- SoapInteropTypes.cs
- WebPartCloseVerb.cs
- DbProviderConfigurationHandler.cs
- InternalMappingException.cs
- FontFamilyConverter.cs
- GeneralTransformGroup.cs
- ClientConfigPaths.cs
- Label.cs
- CheckBoxList.cs
- Rijndael.cs
- DebugView.cs
- Cursors.cs
- AnnotationResourceCollection.cs
- TableLayoutPanelCellPosition.cs
- UniqueIdentifierService.cs
- CngKeyCreationParameters.cs
- QilExpression.cs
- recordstate.cs
- Control.cs
- ToolStripSeparatorRenderEventArgs.cs
- TextEditorLists.cs
- XmlText.cs
- MetadataCache.cs
- DeferredBinaryDeserializerExtension.cs
- EditorAttributeInfo.cs
- FileDialog.cs
- BigInt.cs
- RichTextBoxConstants.cs
- ZipIOCentralDirectoryBlock.cs
- SafeEventHandle.cs
- CodeAttributeDeclarationCollection.cs
- Encoder.cs
- ClaimTypeElementCollection.cs
- XmlJsonWriter.cs
- WebPartZoneCollection.cs
- XmlNullResolver.cs
- XmlEventCache.cs
- TimeSpanStorage.cs
- CodeNamespace.cs
- EntityContainer.cs
- TableChangeProcessor.cs
- ReadOnlyAttribute.cs
- QueryExtender.cs
- PolyBezierSegment.cs
- SqlNotificationRequest.cs
- PartialTrustVisibleAssembly.cs
- SmiEventStream.cs
- IndentTextWriter.cs
- datacache.cs
- TransformedBitmap.cs
- InputReport.cs
- PageThemeBuildProvider.cs
- InstanceCompleteException.cs
- ChildChangedEventArgs.cs
- WebPartConnectionsCloseVerb.cs
- Buffer.cs
- TemplateField.cs
- MissingSatelliteAssemblyException.cs
- BitmapEffectDrawingContent.cs
- MetadataException.cs
- remotingproxy.cs
- XmlSchemaSet.cs
- CorrelationScope.cs
- StringArrayConverter.cs
- PackWebRequestFactory.cs
- RecommendedAsConfigurableAttribute.cs
- CompModSwitches.cs
- InputScope.cs
- BaseServiceProvider.cs
- shaperfactory.cs
- BooleanConverter.cs
- StrokeCollectionDefaultValueFactory.cs
- MulticastNotSupportedException.cs
- XmlParser.cs
- FlatButtonAppearance.cs
- FilteredAttributeCollection.cs
- SqlDataAdapter.cs
- DBBindings.cs
- SqlCacheDependency.cs
- HistoryEventArgs.cs
- EdmFunction.cs