Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / Adapters / HideDisabledControlAdapter.cs / 1305376 / HideDisabledControlAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.Adapters { using System; using System.Web; using System.Web.UI; using System.Web.UI.Adapters; // Used for controls which use their default rendering, but are hidden when disabled. public class HideDisabledControlAdapter : WebControlAdapter { // Returns without doing anything if the control is disabled, otherwise, uses the default rendering. protected internal override void Render(HtmlTextWriter writer) { if (Control.Enabled == false) { return; } Control.Render(writer); } } } // 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
- StringSorter.cs
- TypeHelpers.cs
- SpeechEvent.cs
- SectionInput.cs
- UnionExpr.cs
- TaskFormBase.cs
- ImageMetadata.cs
- SplashScreen.cs
- DataGridViewImageCell.cs
- CaretElement.cs
- ObjectKeyFrameCollection.cs
- PhysicalAddress.cs
- DatasetMethodGenerator.cs
- TypeSource.cs
- NamedPipeAppDomainProtocolHandler.cs
- PaperSource.cs
- SharedDp.cs
- TabControlEvent.cs
- Helper.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- EntityDescriptor.cs
- SQLDateTime.cs
- StreamingContext.cs
- TypedDatasetGenerator.cs
- Enum.cs
- Array.cs
- ITextView.cs
- TextParagraph.cs
- ObjectListDesigner.cs
- ResolveResponse.cs
- CustomExpression.cs
- securestring.cs
- InputScopeNameConverter.cs
- MouseButton.cs
- TraceLog.cs
- UpdatePanelTrigger.cs
- ValuePatternIdentifiers.cs
- CachedTypeface.cs
- SqlCommandSet.cs
- TableLayoutPanelResizeGlyph.cs
- FormsAuthenticationModule.cs
- OutOfProcStateClientManager.cs
- QilNode.cs
- MouseActionValueSerializer.cs
- Cell.cs
- Model3D.cs
- ContentFileHelper.cs
- ClientType.cs
- SyndicationDeserializer.cs
- CategoryAttribute.cs
- VariableAction.cs
- PersistencePipeline.cs
- MessageSmuggler.cs
- IndexerHelper.cs
- XPathDescendantIterator.cs
- RemotingException.cs
- GridViewRowCollection.cs
- PropertyGridEditorPart.cs
- RequestCache.cs
- AsyncOperation.cs
- XmlSortKeyAccumulator.cs
- DefaultValueConverter.cs
- UmAlQuraCalendar.cs
- WindowsComboBox.cs
- CompareValidator.cs
- DetailsViewInsertedEventArgs.cs
- PropertyStore.cs
- StoragePropertyMapping.cs
- HeaderedItemsControl.cs
- PointIndependentAnimationStorage.cs
- TrackingQuery.cs
- PasswordTextContainer.cs
- StrokeNodeOperations2.cs
- DataGridTextBox.cs
- WebBrowserPermission.cs
- DocumentXmlWriter.cs
- CaseCqlBlock.cs
- NativeMethods.cs
- EntityTemplateFactory.cs
- SafeFindHandle.cs
- MemberProjectedSlot.cs
- PointLightBase.cs
- StringAnimationUsingKeyFrames.cs
- UInt64Storage.cs
- IssuanceLicense.cs
- DesignerForm.cs
- Stackframe.cs
- PassportAuthenticationEventArgs.cs
- InvalidDataContractException.cs
- ServicePoint.cs
- X509Certificate.cs
- ActivityBuilderHelper.cs
- ColorComboBox.cs
- MD5.cs
- ExecutorLocksHeldException.cs
- DecimalStorage.cs
- IconHelper.cs
- SpeakInfo.cs
- StickyNoteAnnotations.cs
- ConfigurationSchemaErrors.cs