Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / ControlIdConverter.cs / 1305376 / 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. /// 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SpAudioStreamWrapper.cs
- RefreshEventArgs.cs
- PasswordRecovery.cs
- DefaultClaimSet.cs
- EntityClassGenerator.cs
- securestring.cs
- ListenerAdapterBase.cs
- PointKeyFrameCollection.cs
- TimelineClockCollection.cs
- AdRotator.cs
- QueryGeneratorBase.cs
- SimpleHandlerFactory.cs
- RawMouseInputReport.cs
- ClientRolePrincipal.cs
- DescendentsWalker.cs
- SQLBytesStorage.cs
- IOException.cs
- MediaElementAutomationPeer.cs
- _LocalDataStore.cs
- BufferedStream.cs
- AsmxEndpointPickerExtension.cs
- PrintPreviewGraphics.cs
- MenuBindingsEditorForm.cs
- HostProtectionException.cs
- FieldInfo.cs
- NamespaceTable.cs
- AcceleratedTokenAuthenticator.cs
- Win32.cs
- ByteStorage.cs
- DataGridSortCommandEventArgs.cs
- ReadOnlyAttribute.cs
- RootBrowserWindowProxy.cs
- SqlDataSourceCache.cs
- BoundsDrawingContextWalker.cs
- ConstantSlot.cs
- XmlChildEnumerator.cs
- NodeInfo.cs
- ThicknessConverter.cs
- SQLStringStorage.cs
- NodeLabelEditEvent.cs
- UrlMappingsSection.cs
- UniqueID.cs
- DBSqlParserTableCollection.cs
- SendParametersContent.cs
- ChangesetResponse.cs
- ColorBuilder.cs
- WorkflowRuntimeElement.cs
- CodeSnippetStatement.cs
- EtwTrace.cs
- CompiledQuery.cs
- WinInetCache.cs
- DataGridViewComboBoxColumn.cs
- RMEnrollmentPage3.cs
- EasingFunctionBase.cs
- DataControlFieldHeaderCell.cs
- ArrangedElementCollection.cs
- SelectionListDesigner.cs
- AssertSection.cs
- SectionInput.cs
- Binding.cs
- XamlLoadErrorInfo.cs
- EntityContainerEntitySetDefiningQuery.cs
- DbLambda.cs
- Focus.cs
- SystemDropShadowChrome.cs
- SemanticKeyElement.cs
- CmsInterop.cs
- IIS7UserPrincipal.cs
- MetabaseReader.cs
- Font.cs
- ComplexBindingPropertiesAttribute.cs
- CryptoApi.cs
- Sql8ConformanceChecker.cs
- XD.cs
- ChildrenQuery.cs
- ExpressionConverter.cs
- HandlerFactoryWrapper.cs
- PrintingPermission.cs
- PrinterResolution.cs
- OdbcInfoMessageEvent.cs
- PolicyFactory.cs
- Msec.cs
- RequestCacheEntry.cs
- XmlDocumentType.cs
- PiiTraceSource.cs
- SingleObjectCollection.cs
- DesignerDataRelationship.cs
- NativeMethods.cs
- UIHelper.cs
- CallSiteHelpers.cs
- CompareInfo.cs
- BaseInfoTable.cs
- LocalizationComments.cs
- HyperLinkField.cs
- BoolExpressionVisitors.cs
- TrimSurroundingWhitespaceAttribute.cs
- NameValuePermission.cs
- AsymmetricKeyExchangeFormatter.cs
- ProcessHostFactoryHelper.cs
- IdlingCommunicationPool.cs