Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DataGridLinkButton.cs / 1305376 / DataGridLinkButton.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 DataGrid. /// [SupportsEventValidation] internal sealed class DataGridLinkButton : LinkButton { internal DataGridLinkButton() {} protected internal override void Render(HtmlTextWriter writer) { SetForeColor(); base.Render(writer); } ////// In HTML hyperlinks always use the browser's link color. /// For the DataGrid, 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. /// private void SetForeColor() { if (ControlStyle.IsSet(System.Web.UI.WebControls.Style.PROP_FORECOLOR) == false) { Color hyperLinkForeColor; Control control = this; for (int i = 0; i < 3; i++) { control = control.Parent; Debug.Assert(((i == 0) && (control is TableCell)) || ((i == 1) && (control is TableRow)) || ((i == 2) && (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
- InkCanvasSelection.cs
- SimpleApplicationHost.cs
- ToolBarPanel.cs
- KeyedHashAlgorithm.cs
- WeakEventTable.cs
- Soap.cs
- Error.cs
- ConfigurationManagerInternal.cs
- SqlCommandSet.cs
- AttachedAnnotationChangedEventArgs.cs
- Privilege.cs
- QueryCorrelationInitializer.cs
- WebServicesDescriptionAttribute.cs
- ConnectionOrientedTransportChannelListener.cs
- MouseGestureValueSerializer.cs
- RetrieveVirtualItemEventArgs.cs
- CryptoApi.cs
- PropertyRecord.cs
- RequestDescription.cs
- SiteMapPathDesigner.cs
- ToolStripScrollButton.cs
- BaseTemplateBuildProvider.cs
- TripleDESCryptoServiceProvider.cs
- ConstraintManager.cs
- JulianCalendar.cs
- XLinq.cs
- AdapterUtil.cs
- CompilationUtil.cs
- AttributeUsageAttribute.cs
- SoapServerProtocol.cs
- CardSpaceException.cs
- CollectionViewGroupRoot.cs
- ButtonFlatAdapter.cs
- cookiecontainer.cs
- RangeBase.cs
- UdpSocketReceiveManager.cs
- StateMachineHistory.cs
- StorageModelBuildProvider.cs
- _ListenerRequestStream.cs
- ParseHttpDate.cs
- ScrollBar.cs
- CommandHelper.cs
- SplashScreen.cs
- NetworkAddressChange.cs
- Formatter.cs
- DataGridAutoFormat.cs
- RenderingEventArgs.cs
- Pen.cs
- Thread.cs
- ImageIndexConverter.cs
- ModelToObjectValueConverter.cs
- Rotation3DAnimation.cs
- httpapplicationstate.cs
- DataObjectCopyingEventArgs.cs
- PropertyGridView.cs
- PageCatalogPart.cs
- SByte.cs
- sqlnorm.cs
- GetCardDetailsRequest.cs
- WithStatement.cs
- Matrix3D.cs
- ConstraintConverter.cs
- EventToken.cs
- DesignerActionVerbList.cs
- mediaclock.cs
- HighlightVisual.cs
- ExpressionBindingsDialog.cs
- OutputCacheSettingsSection.cs
- FunctionUpdateCommand.cs
- IOException.cs
- EntitySetBase.cs
- RectAnimation.cs
- VisualBrush.cs
- PathHelper.cs
- SafeLocalAllocation.cs
- WindowsContainer.cs
- XmlComplianceUtil.cs
- ArithmeticLiteral.cs
- DataGridViewColumnHeaderCell.cs
- ConfigurationStrings.cs
- Localizer.cs
- ComboBox.cs
- TimeIntervalCollection.cs
- RepeatEnumerable.cs
- DBParameter.cs
- IndependentAnimationStorage.cs
- LogEntrySerializationException.cs
- BuildResult.cs
- ThreadPoolTaskScheduler.cs
- SmiEventStream.cs
- CompoundFileStreamReference.cs
- Config.cs
- CellTreeNode.cs
- DataRelationCollection.cs
- AdditionalEntityFunctions.cs
- TaskFormBase.cs
- HttpResponseHeader.cs
- SapiRecognizer.cs
- CDSCollectionETWBCLProvider.cs
- TimelineGroup.cs