Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / URLEditor.cs / 1 / URLEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { using System.Runtime.InteropServices; using System.Design; using System.Diagnostics; using System; 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; ////// /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public class UrlEditor : UITypeEditor { ///Provides an editor for visually picking an Url. ////// /// protected virtual string Caption { get { return SR.GetString(SR.UrlPicker_DefaultCaption); } } ////// Gets or sets the caption for the Url. /// ////// /// protected virtual UrlBuilderOptions Options { get { return UrlBuilderOptions.None; } } ////// Gets or sets the options for the Url picker. /// ////// /// public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { if (provider != null) { IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)); if (edSvc != null) { string url = (string) value; string caption = Caption; string filter = Filter; url = UrlBuilder.BuildUrl(provider, null, url, caption, filter, Options); if (url != null) { value = url; } } } return value; } ////// Edits the specified object value using /// the editor style provided by GetEditorStyle. /// ////// /// protected virtual string Filter { get { return SR.GetString(SR.UrlPicker_DefaultFilter); } } ////// Gets or sets the filter to use. /// ////// /// 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./// Gets the editing style of the Edit method. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InheritanceRules.cs
- Debug.cs
- Scheduling.cs
- ImageSource.cs
- GroupBoxAutomationPeer.cs
- ECDiffieHellmanPublicKey.cs
- ClientScriptItemCollection.cs
- WorkflowMarkupSerializationProvider.cs
- TemplateKey.cs
- XmlEventCache.cs
- GroupItem.cs
- SqlRewriteScalarSubqueries.cs
- Qualifier.cs
- Solver.cs
- coordinatorfactory.cs
- EncryptedPackage.cs
- AllMembershipCondition.cs
- WebConfigurationHost.cs
- COM2AboutBoxPropertyDescriptor.cs
- PersonalizableTypeEntry.cs
- CustomCredentialPolicy.cs
- TimerEventSubscription.cs
- RepeatBehavior.cs
- XPathDocument.cs
- IdentityModelStringsVersion1.cs
- TreeViewDesigner.cs
- FileLoadException.cs
- ServiceHostingEnvironment.cs
- CallTemplateAction.cs
- ValidationEventArgs.cs
- SpecialNameAttribute.cs
- TemplatedWizardStep.cs
- AssemblyCollection.cs
- EntityViewGenerator.cs
- XmlNodeComparer.cs
- SrgsElementFactory.cs
- Point4DConverter.cs
- DrawToolTipEventArgs.cs
- ExpressionNode.cs
- NameObjectCollectionBase.cs
- InkPresenterAutomationPeer.cs
- MergeLocalizationDirectives.cs
- ConditionalAttribute.cs
- UnsafeNativeMethods.cs
- ConsumerConnectionPoint.cs
- LogReserveAndAppendState.cs
- EventBindingService.cs
- PageThemeCodeDomTreeGenerator.cs
- XmlTextReader.cs
- IPAddress.cs
- TableSectionStyle.cs
- DataColumnChangeEvent.cs
- DataGridViewSortCompareEventArgs.cs
- XmlNotation.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- Exceptions.cs
- DynamicRendererThreadManager.cs
- TriState.cs
- XmlNavigatorFilter.cs
- MissingManifestResourceException.cs
- ICspAsymmetricAlgorithm.cs
- WebSysDisplayNameAttribute.cs
- PageMediaType.cs
- SetterBaseCollection.cs
- MeshGeometry3D.cs
- SizeAnimationClockResource.cs
- CollectionViewGroup.cs
- FileDialog.cs
- SmtpClient.cs
- IPAddress.cs
- OutputScopeManager.cs
- PackageRelationshipSelector.cs
- XmlHierarchicalEnumerable.cs
- RawStylusSystemGestureInputReport.cs
- Emitter.cs
- InternalControlCollection.cs
- SQLMembershipProvider.cs
- DateTimeConstantAttribute.cs
- BamlWriter.cs
- CatalogZoneBase.cs
- FixedSOMLineRanges.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- Win32SafeHandles.cs
- PartialTrustVisibleAssemblyCollection.cs
- BuildResult.cs
- XpsFilter.cs
- DropShadowEffect.cs
- LogAppendAsyncResult.cs
- HtmlInputControl.cs
- RuntimeVariableList.cs
- RadioButtonRenderer.cs
- URLEditor.cs
- TextFormatter.cs
- Exceptions.cs
- SetUserLanguageRequest.cs
- RequestResizeEvent.cs
- QueryPageSettingsEventArgs.cs
- PartialTrustHelpers.cs
- RoleBoolean.cs
- GlobalProxySelection.cs