Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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; } } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PlainXmlWriter.cs
- CatalogZone.cs
- SymDocumentType.cs
- SecurityUtils.cs
- DataListItemCollection.cs
- ParameterCollection.cs
- NotificationContext.cs
- AnnotationHelper.cs
- COM2ComponentEditor.cs
- BuildManager.cs
- ElementMarkupObject.cs
- PagePropertiesChangingEventArgs.cs
- ErrorHandlingAcceptor.cs
- TaskScheduler.cs
- PermissionToken.cs
- SqlDataSourceCache.cs
- AcceleratedTokenProviderState.cs
- DesignerView.Commands.cs
- XmlIlGenerator.cs
- AddInServer.cs
- QuotedStringFormatReader.cs
- InvalidPrinterException.cs
- SmiEventSink_Default.cs
- ClientSettings.cs
- Journaling.cs
- typedescriptorpermissionattribute.cs
- RectangleGeometry.cs
- FrameworkElement.cs
- Geometry3D.cs
- ChooseAction.cs
- Baml6ConstructorInfo.cs
- itemelement.cs
- MethodResolver.cs
- ControlSerializer.cs
- TransformerConfigurationWizardBase.cs
- MutexSecurity.cs
- AndCondition.cs
- AuthenticationConfig.cs
- AvTraceDetails.cs
- TextEditor.cs
- ServiceNameCollection.cs
- NetDataContractSerializer.cs
- IconHelper.cs
- DataGridViewColumnTypeEditor.cs
- Marshal.cs
- DataGridHyperlinkColumn.cs
- ArraySegment.cs
- FolderNameEditor.cs
- SynchronizationScope.cs
- HwndTarget.cs
- LineSegment.cs
- DataGridViewLinkCell.cs
- PageStatePersister.cs
- ListParagraph.cs
- IApplicationTrustManager.cs
- ConnectionManagementSection.cs
- PageRequestManager.cs
- DataGridViewRowsRemovedEventArgs.cs
- FunctionQuery.cs
- OperandQuery.cs
- CachedRequestParams.cs
- DtrList.cs
- AuthorizationRuleCollection.cs
- AuthenticationSection.cs
- GeneralTransform3DTo2D.cs
- _UriSyntax.cs
- MessageQueueAccessControlEntry.cs
- SafeArrayTypeMismatchException.cs
- TableCellCollection.cs
- Image.cs
- DbgUtil.cs
- CodeCompileUnit.cs
- ExpressionBuilder.cs
- UdpContractFilterBehavior.cs
- ExeConfigurationFileMap.cs
- GPPOINTF.cs
- DataListItemCollection.cs
- Transform.cs
- DeflateEmulationStream.cs
- CommandEventArgs.cs
- InkCanvasFeedbackAdorner.cs
- ResourceWriter.cs
- GacUtil.cs
- DataRelationCollection.cs
- ConsoleTraceListener.cs
- WindowsIdentity.cs
- CompositeDesignerAccessibleObject.cs
- Dictionary.cs
- SafeFileMappingHandle.cs
- WindowsListViewScroll.cs
- MDIClient.cs
- serverconfig.cs
- TextDecorationCollection.cs
- LogEntrySerializationException.cs
- SqlCharStream.cs
- TableItemStyle.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- ExceptionUtil.cs
- CharEnumerator.cs
- DataServiceQueryProvider.cs