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
- ToolstripProfessionalRenderer.cs
- Point3DAnimation.cs
- CodeGenerator.cs
- BlurBitmapEffect.cs
- UniqueID.cs
- DataObjectEventArgs.cs
- ArraySubsetEnumerator.cs
- EventLogTraceListener.cs
- ServiceChannel.cs
- CodeDomComponentSerializationService.cs
- QueryMath.cs
- TransformGroup.cs
- InternalConfigEventArgs.cs
- SqlDuplicator.cs
- Boolean.cs
- ProtectedConfigurationProviderCollection.cs
- TableHeaderCell.cs
- GridViewPageEventArgs.cs
- BlurEffect.cs
- HttpValueCollection.cs
- ThemeableAttribute.cs
- EventEntry.cs
- PersistChildrenAttribute.cs
- OptimizedTemplateContentHelper.cs
- ListViewSelectEventArgs.cs
- OneWayChannelListener.cs
- DataSourceControl.cs
- Not.cs
- PageClientProxyGenerator.cs
- XmlNodeChangedEventArgs.cs
- TypeValidationEventArgs.cs
- DataListItem.cs
- NotifyInputEventArgs.cs
- HiddenFieldPageStatePersister.cs
- ImageAttributes.cs
- CalendarDay.cs
- ErrorFormatterPage.cs
- ExpressionBuilder.cs
- CompilerErrorCollection.cs
- SqlErrorCollection.cs
- FileVersionInfo.cs
- MessageQueueKey.cs
- MSAAEventDispatcher.cs
- StylusDownEventArgs.cs
- HitTestParameters.cs
- MeasureData.cs
- SynthesizerStateChangedEventArgs.cs
- ClockGroup.cs
- DoubleLinkList.cs
- FixedPageProcessor.cs
- HostingEnvironmentException.cs
- CompositeFontParser.cs
- ConnectionPoint.cs
- LayoutEditorPart.cs
- WebPartCancelEventArgs.cs
- HttpRuntimeSection.cs
- Equal.cs
- RightsManagementInformation.cs
- SqlParameterizer.cs
- PanelStyle.cs
- MatrixTransform.cs
- ControllableStoryboardAction.cs
- ObjectSelectorEditor.cs
- DesignerHost.cs
- QilDataSource.cs
- MetadataException.cs
- DropTarget.cs
- HttpListenerException.cs
- ButtonColumn.cs
- CommonObjectSecurity.cs
- _Events.cs
- ChannelBuilder.cs
- XmlHierarchicalEnumerable.cs
- DynamicDataManager.cs
- StringInfo.cs
- ColorMap.cs
- TcpSocketManager.cs
- CounterSampleCalculator.cs
- HttpApplicationStateWrapper.cs
- EmbossBitmapEffect.cs
- SkipQueryOptionExpression.cs
- CheckBox.cs
- ConnectionProviderAttribute.cs
- GridViewSortEventArgs.cs
- TraceListeners.cs
- BlobPersonalizationState.cs
- filewebrequest.cs
- PerformanceCounter.cs
- SettingsPropertyValue.cs
- WorkflowInstanceProxy.cs
- SelectionBorderGlyph.cs
- SqlResolver.cs
- Privilege.cs
- ConfigurationSectionGroup.cs
- FileReader.cs
- ActivationArguments.cs
- OleDbInfoMessageEvent.cs
- ToolStripContextMenu.cs
- LogicalExpressionEditor.cs
- PositiveTimeSpanValidator.cs