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
- Matrix.cs
- DoWhileDesigner.xaml.cs
- GridViewRowPresenter.cs
- BufferedGraphicsManager.cs
- RelationalExpressions.cs
- SimplePropertyEntry.cs
- SystemIPAddressInformation.cs
- HttpCacheVary.cs
- EventBookmark.cs
- DependencyPropertyDescriptor.cs
- WebPartDeleteVerb.cs
- UpdateEventArgs.cs
- SqlDataSourceSelectingEventArgs.cs
- CodeArgumentReferenceExpression.cs
- UntypedNullExpression.cs
- TableStyle.cs
- WindowsTreeView.cs
- WinEventQueueItem.cs
- SerializationException.cs
- OdbcReferenceCollection.cs
- UserNamePasswordClientCredential.cs
- ThaiBuddhistCalendar.cs
- SourceFileBuildProvider.cs
- PersonalizationStateInfo.cs
- ClientCultureInfo.cs
- DateTimeFormatInfo.cs
- Compilation.cs
- PerfService.cs
- PartBasedPackageProperties.cs
- PanelStyle.cs
- RightsManagementLicense.cs
- ListParaClient.cs
- CompiledIdentityConstraint.cs
- CombinedGeometry.cs
- StoryFragments.cs
- MenuEventArgs.cs
- BuildManager.cs
- Configuration.cs
- ExpressionBindingCollection.cs
- SqlDataSourceDesigner.cs
- DetailsViewInsertEventArgs.cs
- Typography.cs
- AspNetPartialTrustHelpers.cs
- UserCancellationException.cs
- RecognizerInfo.cs
- ScriptReferenceBase.cs
- ListSourceHelper.cs
- WebColorConverter.cs
- SharedConnectionWorkflowTransactionService.cs
- CompensationDesigner.cs
- CollectionChangeEventArgs.cs
- SessionStateUtil.cs
- SiteMapHierarchicalDataSourceView.cs
- ViewManagerAttribute.cs
- RenderContext.cs
- XamlStream.cs
- RealizationDrawingContextWalker.cs
- TerminatorSinks.cs
- XmlArrayAttribute.cs
- FlowchartStart.xaml.cs
- ServiceElementCollection.cs
- DataViewManagerListItemTypeDescriptor.cs
- COM2EnumConverter.cs
- XdrBuilder.cs
- FastPropertyAccessor.cs
- CodeIdentifier.cs
- TypedElement.cs
- URLString.cs
- RuntimeConfigurationRecord.cs
- Empty.cs
- PermissionSetTriple.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- AssemblySettingAttributes.cs
- ClientScriptManagerWrapper.cs
- ConnectivityStatus.cs
- TraceContextEventArgs.cs
- SizeValueSerializer.cs
- IDQuery.cs
- RegisteredHiddenField.cs
- Decoder.cs
- Int64.cs
- OpCopier.cs
- QueryCacheManager.cs
- LoginDesigner.cs
- SemaphoreFullException.cs
- Win32KeyboardDevice.cs
- SspiNegotiationTokenAuthenticatorState.cs
- DataGridCommandEventArgs.cs
- EventItfInfo.cs
- SystemIPInterfaceStatistics.cs
- FilteredXmlReader.cs
- ListenerConstants.cs
- WeakEventManager.cs
- HtmlTernaryTree.cs
- TypeLoadException.cs
- TypedColumnHandler.cs
- HostedBindingBehavior.cs
- XmlTextAttribute.cs
- Freezable.cs
- AsymmetricKeyExchangeFormatter.cs