Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataGridLinkButton.cs / 1 / 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. // //----------------------------------------------------------------------------- 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
- DrawTreeNodeEventArgs.cs
- TreeView.cs
- ToolStripDesigner.cs
- MouseEventArgs.cs
- ISCIIEncoding.cs
- StateBag.cs
- CompositeDispatchFormatter.cs
- DetailsViewDeletedEventArgs.cs
- ContainerFilterService.cs
- ObjectDataSourceSelectingEventArgs.cs
- LiteralControl.cs
- TraceData.cs
- Pkcs7Recipient.cs
- UIAgentCrashedException.cs
- Executor.cs
- XsdValidatingReader.cs
- RelationHandler.cs
- CompiledRegexRunnerFactory.cs
- ListViewItemEventArgs.cs
- Serialization.cs
- LocalizationParserHooks.cs
- CodeParameterDeclarationExpressionCollection.cs
- PropertyTabChangedEvent.cs
- ValueProviderWrapper.cs
- MenuDesigner.cs
- Clause.cs
- NotSupportedException.cs
- ControlUtil.cs
- IISUnsafeMethods.cs
- DataTemplateSelector.cs
- QueryCacheManager.cs
- MessagePartDescriptionCollection.cs
- PointCollectionValueSerializer.cs
- Vector3DAnimation.cs
- IndexerNameAttribute.cs
- TrimSurroundingWhitespaceAttribute.cs
- NonParentingControl.cs
- HandleRef.cs
- XhtmlBasicLabelAdapter.cs
- PrintController.cs
- ToolBarButtonDesigner.cs
- SendAgentStatusRequest.cs
- ValueUtilsSmi.cs
- LinkArea.cs
- SparseMemoryStream.cs
- GradientBrush.cs
- PointLightBase.cs
- OutputBuffer.cs
- CodeGroup.cs
- SecurityManager.cs
- QuaternionRotation3D.cs
- MenuItemBindingCollection.cs
- ToggleButtonAutomationPeer.cs
- EntityAdapter.cs
- NestPullup.cs
- DropShadowEffect.cs
- StyleCollectionEditor.cs
- SiteOfOriginContainer.cs
- RowSpanVector.cs
- MenuItemAutomationPeer.cs
- MailWebEventProvider.cs
- SchemeSettingElementCollection.cs
- XmlTextReader.cs
- ServiceKnownTypeAttribute.cs
- MbpInfo.cs
- XmlTextWriter.cs
- RubberbandSelector.cs
- TextRangeProviderWrapper.cs
- ContentType.cs
- HandleTable.cs
- TaiwanLunisolarCalendar.cs
- DataGridViewCellValueEventArgs.cs
- GregorianCalendar.cs
- PageContentAsyncResult.cs
- AssemblyEvidenceFactory.cs
- TemplatedWizardStep.cs
- DefaultValueConverter.cs
- ComponentSerializationService.cs
- SessionEndingCancelEventArgs.cs
- DebugView.cs
- Function.cs
- PrintControllerWithStatusDialog.cs
- streamingZipPartStream.cs
- StringComparer.cs
- TableParaClient.cs
- DrawingVisualDrawingContext.cs
- PolyLineSegment.cs
- FileVersionInfo.cs
- PrintPreviewDialog.cs
- SerializerDescriptor.cs
- InboundActivityHelper.cs
- Utility.cs
- SourceLocation.cs
- ToolStripMenuItem.cs
- OleDbConnection.cs
- TemplateBamlTreeBuilder.cs
- WindowsNonControl.cs
- TextTreeTextBlock.cs
- TiffBitmapDecoder.cs
- WS2007HttpBinding.cs