Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ControlIdConverter.cs / 1 / ControlIdConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Globalization; using System.Reflection; using System.Web.Util; using System.Security.Permissions; ////// TypeConverter for ControlParameter's ControlID property. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ControlIDConverter : StringConverter { ////// protected virtual bool FilterControl(Control control) { return true; } ///Determines whether a given control should have its id added to the StandardValuesCollection. ////// Returns a list of all control IDs in the container. /// private string[] GetControls(IDesignerHost host, object instance) { IContainer container = host.Container; // Locate nearest container IComponent component = instance as IComponent; if (component != null && component.Site != null) { container = component.Site.Container; } if (container == null) { return null; } ComponentCollection allComponents = container.Components; ArrayList array = new ArrayList(); // For each control in the container foreach (IComponent comp in (IEnumerable)allComponents) { Control control = comp as Control; // Ignore DesignerHost.RootComponent (Page or UserControl), controls that don't have ID's, // and the Control itself if (control != null && control != instance && control != host.RootComponent && control.ID != null && control.ID.Length > 0 && FilterControl(control)) { array.Add(control.ID); } } array.Sort(Comparer.Default); return (string[])array.ToArray(typeof(string)); } ////// Returns a collection of standard values retrieved from the context specified /// by the specified type descriptor. /// public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { if (context == null) { return null; } IDesignerHost host = (IDesignerHost)context.GetService(typeof(IDesignerHost)); Debug.Assert(host != null, "Unable to get IDesignerHost in ControlIDConverter"); if (host != null) { string[] controlIDs = GetControls(host, context.Instance); if (controlIDs == null) { return null; } return new StandardValuesCollection(controlIDs); } return null; } ////// Gets whether or not the context specified contains exclusive standard values. /// public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) { return false; } ////// Gets whether or not the specified context contains supported standard values. /// public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return (context != null); } } }
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HyperLinkColumn.cs
- QilReplaceVisitor.cs
- BrowserCapabilitiesFactoryBase.cs
- SmtpClient.cs
- PropertyCollection.cs
- odbcmetadatacolumnnames.cs
- AnnotationHighlightLayer.cs
- HttpCookie.cs
- PropertyExpression.cs
- PropertyItemInternal.cs
- ImageList.cs
- __Filters.cs
- PopupControlService.cs
- Config.cs
- CuspData.cs
- XsdDataContractImporter.cs
- HtmlButton.cs
- PerformanceCounterPermission.cs
- WebCategoryAttribute.cs
- JsonReaderDelegator.cs
- WhitespaceReader.cs
- _ContextAwareResult.cs
- File.cs
- ExpressionConverter.cs
- TextRangeEditLists.cs
- XPathNodeInfoAtom.cs
- SubqueryRules.cs
- GlobalItem.cs
- RectangleGeometry.cs
- ListInitExpression.cs
- UpdatePanelControlTrigger.cs
- FullTextBreakpoint.cs
- JsonReaderDelegator.cs
- FlowDocumentView.cs
- XmlSchemaAttributeGroup.cs
- ScriptControl.cs
- HttpCachePolicyBase.cs
- XamlClipboardData.cs
- SqlDataSourceCache.cs
- ClonableStack.cs
- RIPEMD160.cs
- DocumentViewerBase.cs
- StandardToolWindows.cs
- SID.cs
- Vector3DAnimation.cs
- SrgsToken.cs
- CfgParser.cs
- StateBag.cs
- TraceSwitch.cs
- SingleStorage.cs
- ThousandthOfEmRealDoubles.cs
- SpeechAudioFormatInfo.cs
- CommonProperties.cs
- SelectionItemProviderWrapper.cs
- BitmapMetadata.cs
- WebPartCollection.cs
- EditorServiceContext.cs
- Regex.cs
- TheQuery.cs
- ResourceDictionary.cs
- AlphaSortedEnumConverter.cs
- EntityModelSchemaGenerator.cs
- SvcMapFileLoader.cs
- GB18030Encoding.cs
- RangeValuePattern.cs
- BitmapEffectGeneralTransform.cs
- TypeInitializationException.cs
- DataGridViewCellValidatingEventArgs.cs
- PersonalizationStateInfoCollection.cs
- ValidationHelper.cs
- InternalControlCollection.cs
- ErrorEventArgs.cs
- Encoder.cs
- Wow64ConfigurationLoader.cs
- DirectoryInfo.cs
- ExtensibleClassFactory.cs
- Convert.cs
- EditCommandColumn.cs
- ResourcePart.cs
- GridViewRowEventArgs.cs
- JsonSerializer.cs
- MissingFieldException.cs
- Pair.cs
- TypeConverter.cs
- TextSelectionHighlightLayer.cs
- PlainXmlSerializer.cs
- ObjectMemberMapping.cs
- GlyphTypeface.cs
- SqlRetyper.cs
- XsltFunctions.cs
- DataGridViewCellStyleChangedEventArgs.cs
- TextEndOfParagraph.cs
- FormViewDeletedEventArgs.cs
- RepeatButtonAutomationPeer.cs
- MemberPath.cs
- DockAndAnchorLayout.cs
- PublishLicense.cs
- ProfileManager.cs
- ArgumentNullException.cs
- IsolationInterop.cs