Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlPagerLinkButton.cs / 1 / DataControlPagerLinkButton.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Drawing; using System.Web.Util; ////// Derived version of LinkButton used within a DataControl. /// [SupportsEventValidation] internal class DataControlPagerLinkButton : DataControlLinkButton { internal DataControlPagerLinkButton(IPostBackContainer container) : base(container) { } public override bool CausesValidation { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.CannotSetValidationOnPagerButtons)); } } ////// In HTML hyperlinks always use the browser's link color. /// For the DataControl, we want all LinkButtons to honor the ForeColor setting. /// This requires looking up into the control hierarchy to see if either the cell /// or the containing row or table define a ForeColor. /// protected override void SetForeColor() { if (ControlStyle.IsSet(System.Web.UI.WebControls.Style.PROP_FORECOLOR) == false) { Color hyperLinkForeColor; Control control = this; for (int i = 0; i < 6; i++) { control = control.Parent; // pager buttons are usually inside a table that's inside the pager row Debug.Assert(((i == 0) && (control is TableCell)) || ((i == 1) && (control is TableRow)) || ((i == 2) && (control is Table)) || ((i == 3) && (control is TableCell)) || ((i == 4) && (control is TableRow)) || ((i == 5) && (control is Table))); hyperLinkForeColor = ((WebControl)control).ForeColor; if (hyperLinkForeColor != Color.Empty) { ForeColor = hyperLinkForeColor; break; } } } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FixedTextPointer.cs
- WebBrowserEvent.cs
- SessionStateContainer.cs
- CodeTypeReference.cs
- InstanceDescriptor.cs
- COM2PropertyDescriptor.cs
- CompoundFileStorageReference.cs
- DrawToolTipEventArgs.cs
- ScrollChrome.cs
- WmfPlaceableFileHeader.cs
- SqlGatherConsumedAliases.cs
- TimeSpanStorage.cs
- SecureConversationVersion.cs
- StoryFragments.cs
- EmptyReadOnlyDictionaryInternal.cs
- bindurihelper.cs
- Win32SafeHandles.cs
- EncoderParameter.cs
- RsaSecurityKey.cs
- util.cs
- ErrorFormatter.cs
- DispatcherExceptionFilterEventArgs.cs
- NavigatingCancelEventArgs.cs
- TranslateTransform.cs
- ThreadSafeList.cs
- AttachedPropertyDescriptor.cs
- CodeVariableDeclarationStatement.cs
- ExpressionVisitor.cs
- CreateUserErrorEventArgs.cs
- ConfigurationSectionGroup.cs
- ContainerAction.cs
- DbConnectionInternal.cs
- Translator.cs
- SiteMapNode.cs
- BitmapEffectOutputConnector.cs
- GridViewSelectEventArgs.cs
- RecipientInfo.cs
- CFStream.cs
- ServiceDefaults.cs
- OuterGlowBitmapEffect.cs
- SimpleRecyclingCache.cs
- RenderOptions.cs
- ExpressionConverter.cs
- TableDetailsRow.cs
- StrongNamePublicKeyBlob.cs
- WindowsListViewGroup.cs
- SHA1.cs
- SerializeAbsoluteContext.cs
- Win32.cs
- DataGridViewRow.cs
- Vector.cs
- _CacheStreams.cs
- EntityDataSourceContainerNameItem.cs
- wgx_exports.cs
- DataServiceException.cs
- AcceleratedTokenProviderState.cs
- GroupQuery.cs
- DefaultTextStoreTextComposition.cs
- AutomationPatternInfo.cs
- EnumUnknown.cs
- EventProxy.cs
- FileLogRecordStream.cs
- ResetableIterator.cs
- ReturnEventArgs.cs
- AccessDataSourceDesigner.cs
- SdlChannelSink.cs
- ContentType.cs
- PackagePartCollection.cs
- CodeVariableDeclarationStatement.cs
- TypeForwardedToAttribute.cs
- ErrorRuntimeConfig.cs
- XhtmlConformanceSection.cs
- ValueOfAction.cs
- WindowsListBox.cs
- StorageInfo.cs
- CaseExpr.cs
- RuntimeConfigLKG.cs
- updatecommandorderer.cs
- DataMemberFieldEditor.cs
- DataGrid.cs
- PropertyDescriptorGridEntry.cs
- FontWeight.cs
- Formatter.cs
- DataSourceCacheDurationConverter.cs
- ComEventsHelper.cs
- ServiceConfigurationTraceRecord.cs
- XsltLoader.cs
- ProfessionalColorTable.cs
- X509Certificate.cs
- StorageComplexTypeMapping.cs
- UpdateRecord.cs
- DataSysAttribute.cs
- PlaceHolder.cs
- SpellCheck.cs
- WebSysDescriptionAttribute.cs
- HtmlTableRowCollection.cs
- SerializationSectionGroup.cs
- ClientFormsAuthenticationCredentials.cs
- ConstructorNeedsTagAttribute.cs
- RoleGroup.cs