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
- GridLength.cs
- ReferenceTypeElement.cs
- listitem.cs
- DataViewSetting.cs
- MouseActionConverter.cs
- elementinformation.cs
- GenerateScriptTypeAttribute.cs
- ProfileSection.cs
- EventEntry.cs
- wmiutil.cs
- FixedSOMImage.cs
- SizeF.cs
- Type.cs
- Select.cs
- ArglessEventHandlerProxy.cs
- XsltLibrary.cs
- ModelVisual3D.cs
- ZoneIdentityPermission.cs
- Attachment.cs
- X509CertificateEndpointIdentity.cs
- XPathException.cs
- AllMembershipCondition.cs
- SmiEventSink_DeferedProcessing.cs
- WorkflowQueuingService.cs
- HtmlInputHidden.cs
- StringValidator.cs
- StateMachine.cs
- Region.cs
- DropAnimation.xaml.cs
- OleStrCAMarshaler.cs
- SHA512.cs
- Scalars.cs
- ContractBase.cs
- ImageButton.cs
- TransformerInfo.cs
- Number.cs
- AuthenticateEventArgs.cs
- VisualProxy.cs
- FontConverter.cs
- PaginationProgressEventArgs.cs
- HyperLink.cs
- DataServiceRequestException.cs
- TextOptionsInternal.cs
- LoaderAllocator.cs
- CommandManager.cs
- Exception.cs
- TcpProcessProtocolHandler.cs
- ConvertEvent.cs
- __Error.cs
- ClientSettingsStore.cs
- StatusBar.cs
- HtmlEmptyTagControlBuilder.cs
- PerformanceCountersElement.cs
- ExtensionQuery.cs
- ExpressionBindingCollection.cs
- DataGridTable.cs
- ClientUrlResolverWrapper.cs
- ConstructorNeedsTagAttribute.cs
- MemberAssignment.cs
- CodeSnippetExpression.cs
- InternalMappingException.cs
- XPathSingletonIterator.cs
- ConfigurationLocationCollection.cs
- DetailsViewCommandEventArgs.cs
- MultiBinding.cs
- TemplateField.cs
- EnumUnknown.cs
- OleDbError.cs
- EditingCoordinator.cs
- CheckPair.cs
- SubstitutionList.cs
- DbCommandDefinition.cs
- FixedHyperLink.cs
- TreeViewDesigner.cs
- CqlParser.cs
- BuildManagerHost.cs
- LinkedResourceCollection.cs
- DictionaryKeyPropertyAttribute.cs
- DataServiceQueryException.cs
- IProvider.cs
- Expander.cs
- NullableLongSumAggregationOperator.cs
- CompareValidator.cs
- MemberInfoSerializationHolder.cs
- Queue.cs
- XmlSchemaAny.cs
- SqlDataSourceSelectingEventArgs.cs
- StreamInfo.cs
- Point3DAnimation.cs
- GridItem.cs
- Main.cs
- EnvelopedSignatureTransform.cs
- CustomAttributeSerializer.cs
- Part.cs
- RightsManagementInformation.cs
- Table.cs
- HttpAsyncResult.cs
- GeneralTransform3DGroup.cs
- ExpressionEvaluator.cs
- ToolTipAutomationPeer.cs