Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// 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); } } } // 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
- BoolExpression.cs
- Pts.cs
- ResolveInfo.cs
- WindowsListView.cs
- PropertyTabChangedEvent.cs
- ControlValuePropertyAttribute.cs
- BatchParser.cs
- PenLineCapValidation.cs
- XmlNamedNodeMap.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- MarkedHighlightComponent.cs
- TypeConvertions.cs
- DataShape.cs
- ColorConverter.cs
- EtwTrackingParticipant.cs
- SqlConnectionPoolGroupProviderInfo.cs
- XamlWriter.cs
- PolyLineSegment.cs
- SchemeSettingElementCollection.cs
- DocumentXPathNavigator.cs
- documentsequencetextview.cs
- ActivityBuilderHelper.cs
- InternalsVisibleToAttribute.cs
- HttpException.cs
- SinglePhaseEnlistment.cs
- ServiceOperationParameter.cs
- WebPartZone.cs
- PriorityChain.cs
- StrongName.cs
- PeerCollaborationPermission.cs
- SmtpFailedRecipientsException.cs
- ListView.cs
- SecurityProtocolCorrelationState.cs
- BitmapScalingModeValidation.cs
- sqlpipe.cs
- ToolboxItemSnapLineBehavior.cs
- DataServiceQueryProvider.cs
- MethodAccessException.cs
- KeyConverter.cs
- SocketCache.cs
- ObjectManager.cs
- CompilerTypeWithParams.cs
- Vars.cs
- FrugalMap.cs
- ConfigurationSectionGroupCollection.cs
- EventProxy.cs
- GeometryValueSerializer.cs
- WindowsListViewScroll.cs
- XmlParserContext.cs
- ThrowHelper.cs
- UriScheme.cs
- WebPartManager.cs
- UserControlParser.cs
- MediaElementAutomationPeer.cs
- EndOfStreamException.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- _BufferOffsetSize.cs
- EtwTrackingBehavior.cs
- DecimalAverageAggregationOperator.cs
- HttpClientCredentialType.cs
- XslTransform.cs
- TriggerBase.cs
- PassportAuthenticationEventArgs.cs
- PeerCollaborationPermission.cs
- EdmToObjectNamespaceMap.cs
- XmlWrappingReader.cs
- Dynamic.cs
- SQLChars.cs
- DocumentPageView.cs
- PerformanceCountersElement.cs
- CheckPair.cs
- AssemblyAttributes.cs
- XmlNamespaceDeclarationsAttribute.cs
- XmlUTF8TextReader.cs
- ViewStateChangedEventArgs.cs
- InvalidProgramException.cs
- PreparingEnlistment.cs
- ColumnBinding.cs
- PagesSection.cs
- DebugHandleTracker.cs
- ConnectionManagementSection.cs
- BaseTypeViewSchema.cs
- SecurityTokenAuthenticator.cs
- TextEditorParagraphs.cs
- ObjectPropertyMapping.cs
- EntityViewGenerationAttribute.cs
- OfTypeExpression.cs
- ImageSource.cs
- CompilationRelaxations.cs
- DataFormat.cs
- FactoryGenerator.cs
- MyContact.cs
- AsyncStreamReader.cs
- DataSourceUtil.cs
- RunWorkerCompletedEventArgs.cs
- XPathBuilder.cs
- Baml2006KeyRecord.cs
- ReadOnlyNameValueCollection.cs
- InputLanguageManager.cs
- LogicalTreeHelper.cs