Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlPagerLinkButton.cs / 2 / 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; } } } } } } // 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
- PerformanceCounterCategory.cs
- ReferencedType.cs
- DataChangedEventManager.cs
- CodeGenerator.cs
- TextBox.cs
- DataBinder.cs
- coordinator.cs
- KeyFrames.cs
- Compiler.cs
- DrawingVisual.cs
- SvcMapFileLoader.cs
- TagPrefixInfo.cs
- ActiveXSerializer.cs
- SchemaAttDef.cs
- MethodImplAttribute.cs
- SemaphoreSlim.cs
- OleDbException.cs
- _FtpControlStream.cs
- RepeaterItemEventArgs.cs
- ArgumentOutOfRangeException.cs
- SQLMoney.cs
- WebPartCollection.cs
- ClockController.cs
- DirectoryObjectSecurity.cs
- ValidationEventArgs.cs
- InheritedPropertyChangedEventArgs.cs
- PropertyGridDesigner.cs
- RSAOAEPKeyExchangeFormatter.cs
- AutomationProperties.cs
- elementinformation.cs
- FontFamilyIdentifier.cs
- UIAgentAsyncEndRequest.cs
- RuntimeHandles.cs
- QuaternionRotation3D.cs
- Util.cs
- HyperLinkDataBindingHandler.cs
- SchemaCollectionPreprocessor.cs
- DataConnectionHelper.cs
- QilUnary.cs
- CrossContextChannel.cs
- SqlMethodCallConverter.cs
- DeadCharTextComposition.cs
- FixedDocumentSequencePaginator.cs
- XsltOutput.cs
- Splitter.cs
- ListItemCollection.cs
- RegexParser.cs
- CompositionDesigner.cs
- GridViewEditEventArgs.cs
- MemberDescriptor.cs
- SecurityKeyEntropyMode.cs
- ContextDataSource.cs
- XPathDocument.cs
- InputBinder.cs
- AnnotationMap.cs
- BackgroundFormatInfo.cs
- CommandLineParser.cs
- FixedTextContainer.cs
- DataGridViewTopLeftHeaderCell.cs
- ConfigurationElementProperty.cs
- RayHitTestParameters.cs
- DecoderBestFitFallback.cs
- InitiatorSessionSymmetricTransportSecurityProtocol.cs
- TransformConverter.cs
- CommandValueSerializer.cs
- ObjectFullSpanRewriter.cs
- brushes.cs
- FileLoadException.cs
- ArcSegment.cs
- MemberPath.cs
- ApplicationActivator.cs
- DataGridViewCellPaintingEventArgs.cs
- ZipIOExtraFieldElement.cs
- HMACSHA1.cs
- VideoDrawing.cs
- ResourceSet.cs
- PageEventArgs.cs
- NavigationWindowAutomationPeer.cs
- FacetDescriptionElement.cs
- ReferencedAssemblyResolver.cs
- WindowAutomationPeer.cs
- ViewValidator.cs
- NativeMethods.cs
- ConfigurationLocationCollection.cs
- CompensatableTransactionScopeActivityDesigner.cs
- activationcontext.cs
- QueryRewriter.cs
- AssemblyHash.cs
- oledbmetadatacolumnnames.cs
- AggregateNode.cs
- Helpers.cs
- DataException.cs
- CallbackDebugElement.cs
- Line.cs
- WebPartsSection.cs
- DataListCommandEventArgs.cs
- SymbolEqualComparer.cs
- XhtmlTextWriter.cs
- SerializerProvider.cs
- DataGridViewRowHeaderCell.cs