Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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. //------------------------------------------------------------------------------ //// 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
- StylusPointProperties.cs
- SymbolDocumentGenerator.cs
- Vector3DKeyFrameCollection.cs
- Light.cs
- BamlLocalizationDictionary.cs
- TypeBuilderInstantiation.cs
- Point3D.cs
- SystemParameters.cs
- ConfigXmlWhitespace.cs
- ExpressionBuilder.cs
- Size.cs
- EntityCommand.cs
- FormCollection.cs
- TraceListeners.cs
- Missing.cs
- WebMessageEncodingElement.cs
- AppliedDeviceFiltersEditor.cs
- DataGridViewUtilities.cs
- WmlTextBoxAdapter.cs
- ResourceDictionary.cs
- FilteredXmlReader.cs
- ListViewUpdateEventArgs.cs
- DataGridViewMethods.cs
- DbProviderSpecificTypePropertyAttribute.cs
- InvalidComObjectException.cs
- PeerPresenceInfo.cs
- TypeUtil.cs
- BamlLocalizationDictionary.cs
- UrlMappingsSection.cs
- GridViewDeleteEventArgs.cs
- BulletChrome.cs
- TraceListener.cs
- SrgsSemanticInterpretationTag.cs
- DbException.cs
- querybuilder.cs
- SnapshotChangeTrackingStrategy.cs
- HttpCapabilitiesSectionHandler.cs
- RightsManagementInformation.cs
- DataGridViewRowHeaderCell.cs
- listitem.cs
- RequiredFieldValidator.cs
- RawStylusSystemGestureInputReport.cs
- AssemblyResourceLoader.cs
- FormsAuthentication.cs
- XmlILAnnotation.cs
- _RequestCacheProtocol.cs
- TextRangeAdaptor.cs
- _TLSstream.cs
- LoginName.cs
- XmlNullResolver.cs
- AliasedExpr.cs
- ModifierKeysValueSerializer.cs
- XamlGridLengthSerializer.cs
- DataBindingHandlerAttribute.cs
- CompiledIdentityConstraint.cs
- ProxySimple.cs
- IndividualDeviceConfig.cs
- EditorBrowsableAttribute.cs
- UpdatePanelTrigger.cs
- PriorityItem.cs
- ReferencedAssembly.cs
- HandlerBase.cs
- ApplicationTrust.cs
- SQLInt16.cs
- Contracts.cs
- FormViewPagerRow.cs
- SmtpLoginAuthenticationModule.cs
- TransactionChannelListener.cs
- SerialErrors.cs
- TreeNodeSelectionProcessor.cs
- ApplicationServiceHelper.cs
- DiscoveryMessageProperty.cs
- Bezier.cs
- TdsParserStateObject.cs
- MediaElement.cs
- Timer.cs
- WebControlsSection.cs
- RootAction.cs
- ScrollBar.cs
- ToolStripPanelRenderEventArgs.cs
- NonBatchDirectoryCompiler.cs
- LogicalChannel.cs
- ObsoleteAttribute.cs
- SecurityRuntime.cs
- GridViewRow.cs
- ScriptResourceInfo.cs
- IdleTimeoutMonitor.cs
- TrackingCondition.cs
- QueryableDataSourceEditData.cs
- StringFormat.cs
- CrossSiteScriptingValidation.cs
- Model3DGroup.cs
- TextTreeNode.cs
- sqlmetadatafactory.cs
- __Filters.cs
- SocketElement.cs
- Subset.cs
- BroadcastEventHelper.cs
- DbConnectionFactory.cs
- MachineKeyConverter.cs