Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataGridLinkButton.cs / 2 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextServicesDisplayAttribute.cs
- AttributeCollection.cs
- XsltSettings.cs
- GeneralTransform3DGroup.cs
- SmiRequestExecutor.cs
- OneOfConst.cs
- AssemblyBuilder.cs
- CodeIdentifier.cs
- XsltQilFactory.cs
- InputLanguageManager.cs
- SmiSettersStream.cs
- ElementNotAvailableException.cs
- SubMenuStyleCollection.cs
- AsnEncodedData.cs
- ClientBuildManager.cs
- XmlMtomReader.cs
- WebPartMenuStyle.cs
- GridItemPattern.cs
- PartialCachingControl.cs
- ErrorProvider.cs
- IdentitySection.cs
- EventsTab.cs
- PersistenceTypeAttribute.cs
- CanonicalXml.cs
- CodeGroup.cs
- SmtpLoginAuthenticationModule.cs
- SudsWriter.cs
- Point3DCollection.cs
- CellCreator.cs
- namescope.cs
- DocumentPageViewAutomationPeer.cs
- PropertyGridDesigner.cs
- SchemaTypeEmitter.cs
- XmlObjectSerializerReadContextComplex.cs
- Internal.cs
- CounterSample.cs
- AdRotator.cs
- ThrowHelper.cs
- GridViewSelectEventArgs.cs
- EncoderParameters.cs
- Visual3D.cs
- SqlTriggerContext.cs
- Message.cs
- DocumentApplicationJournalEntry.cs
- PtsHelper.cs
- OleServicesContext.cs
- sortedlist.cs
- ConsoleKeyInfo.cs
- X509SecurityToken.cs
- RenderData.cs
- FieldDescriptor.cs
- FileSystemEventArgs.cs
- StringFunctions.cs
- smtppermission.cs
- DocumentOrderQuery.cs
- FixedPageAutomationPeer.cs
- SqlException.cs
- FileLevelControlBuilderAttribute.cs
- ChangePasswordDesigner.cs
- PeerCollaborationPermission.cs
- GetIndexBinder.cs
- FilterRepeater.cs
- XmlJsonWriter.cs
- BulletChrome.cs
- HandleCollector.cs
- EasingKeyFrames.cs
- ControlCommandSet.cs
- StrongNameUtility.cs
- XslTransform.cs
- MessageSecurityOverTcpElement.cs
- FixedSOMSemanticBox.cs
- CodeMemberEvent.cs
- PagedDataSource.cs
- EntityDescriptor.cs
- TdsParserStaticMethods.cs
- SqlEnums.cs
- SelectedCellsChangedEventArgs.cs
- InlinedAggregationOperator.cs
- System.Data_BID.cs
- BamlResourceSerializer.cs
- ScriptResourceAttribute.cs
- XmlSchemaSet.cs
- ReachPageContentCollectionSerializer.cs
- ObjectDataSourceView.cs
- OdbcCommand.cs
- CodeTryCatchFinallyStatement.cs
- WizardForm.cs
- SafeUserTokenHandle.cs
- TextTreeExtractElementUndoUnit.cs
- FrameworkContextData.cs
- InternalMappingException.cs
- _FtpDataStream.cs
- XhtmlBasicPhoneCallAdapter.cs
- BitmapCodecInfo.cs
- MappingItemCollection.cs
- WorkflowViewStateService.cs
- AdornerHitTestResult.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- ParserContext.cs
- XmlNotation.cs