Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RectAnimationUsingKeyFrames.cs
- safex509handles.cs
- ElementHost.cs
- SqlAggregateChecker.cs
- DataSysAttribute.cs
- XmlCountingReader.cs
- BinaryNode.cs
- UndirectedGraph.cs
- Normalization.cs
- IteratorAsyncResult.cs
- AudioFormatConverter.cs
- WindowsListBox.cs
- ObjectDataSourceEventArgs.cs
- ObjectDataSource.cs
- WindowsSlider.cs
- ProcessModuleCollection.cs
- IUnknownConstantAttribute.cs
- WorkflowRuntimeServiceElementCollection.cs
- PositiveTimeSpanValidatorAttribute.cs
- ResourcePool.cs
- Operand.cs
- QilName.cs
- ComPersistableTypeElementCollection.cs
- GrammarBuilderBase.cs
- Authorization.cs
- InfoCardProofToken.cs
- TitleStyle.cs
- Resources.Designer.cs
- PageStatePersister.cs
- TokenBasedSetEnumerator.cs
- WebPartDisplayMode.cs
- LocalValueEnumerator.cs
- CodeEntryPointMethod.cs
- GZipDecoder.cs
- SecUtil.cs
- UnicastIPAddressInformationCollection.cs
- Point.cs
- NativeObjectSecurity.cs
- BaseDataList.cs
- SelectionRangeConverter.cs
- HttpListenerRequest.cs
- ExtensionFile.cs
- Int16Storage.cs
- ByteAnimation.cs
- X500Name.cs
- CredentialCache.cs
- EntityConnectionStringBuilderItem.cs
- SQLChars.cs
- DataGridViewHitTestInfo.cs
- DragEvent.cs
- RectangleGeometry.cs
- BufferModesCollection.cs
- RemotingServices.cs
- DataGridSortCommandEventArgs.cs
- AdPostCacheSubstitution.cs
- TextEditorLists.cs
- CollectionBuilder.cs
- ApplicationActivator.cs
- DataStreamFromComStream.cs
- Camera.cs
- TailCallAnalyzer.cs
- Hyperlink.cs
- ConsumerConnectionPointCollection.cs
- RootBrowserWindow.cs
- Currency.cs
- StateMachineExecutionState.cs
- Win32PrintDialog.cs
- DataGridItemEventArgs.cs
- ReadOnlyHierarchicalDataSource.cs
- SqlCachedBuffer.cs
- ProcessModule.cs
- PropertyGridEditorPart.cs
- GeneralTransform2DTo3DTo2D.cs
- TiffBitmapDecoder.cs
- CircleHotSpot.cs
- COM2PropertyPageUITypeConverter.cs
- MarkupCompilePass1.cs
- GroupStyle.cs
- WebPartConnectionsCancelVerb.cs
- InheritanceAttribute.cs
- GcSettings.cs
- TimeoutHelper.cs
- InvalidCastException.cs
- ToolStripArrowRenderEventArgs.cs
- SoapObjectReader.cs
- Selector.cs
- BindingGraph.cs
- XPathArrayIterator.cs
- ListViewContainer.cs
- DrawingContextWalker.cs
- _UriTypeConverter.cs
- WebExceptionStatus.cs
- CompiledQuery.cs
- _AutoWebProxyScriptHelper.cs
- SimpleWebHandlerParser.cs
- ListViewHitTestInfo.cs
- ValueType.cs
- TextServicesCompartment.cs
- PasswordRecoveryDesigner.cs
- Pkcs7Recipient.cs