Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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. //------------------------------------------------------------------------------ //// 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
- ColorBlend.cs
- Pts.cs
- XPathNavigator.cs
- MembershipPasswordException.cs
- ClientSideProviderDescription.cs
- TypeElementCollection.cs
- FlowDocumentReader.cs
- NumericUpDownAccelerationCollection.cs
- ToolStripManager.cs
- EntityType.cs
- ProviderBase.cs
- _HTTPDateParse.cs
- XmlTextWriter.cs
- HttpApplicationStateWrapper.cs
- DelegateSerializationHolder.cs
- StringValidatorAttribute.cs
- xml.cs
- MultiBinding.cs
- Triplet.cs
- Vector3D.cs
- JsonReader.cs
- Rule.cs
- PkcsMisc.cs
- StrokeDescriptor.cs
- URI.cs
- TextWriter.cs
- ConstructorBuilder.cs
- BitmapEffectrendercontext.cs
- ProfileProvider.cs
- Serialization.cs
- DataGridViewIntLinkedList.cs
- BaseCodePageEncoding.cs
- XsltOutput.cs
- StreamReader.cs
- GridViewCommandEventArgs.cs
- XmlChildNodes.cs
- XmlAttributeCache.cs
- WinInet.cs
- ControlCollection.cs
- RootDesignerSerializerAttribute.cs
- DesignerAttribute.cs
- MiniConstructorInfo.cs
- ConsoleCancelEventArgs.cs
- NativeMethods.cs
- ComponentRenameEvent.cs
- TextServicesLoader.cs
- PageStatePersister.cs
- RectAnimation.cs
- EndpointConfigContainer.cs
- ClientOptions.cs
- ParallelTimeline.cs
- XpsSerializerWriter.cs
- AttributeSetAction.cs
- PtsContext.cs
- ArrangedElementCollection.cs
- RangeValueProviderWrapper.cs
- DispatcherExceptionFilterEventArgs.cs
- cache.cs
- Track.cs
- WebPartZone.cs
- Journal.cs
- Win32MouseDevice.cs
- ActionFrame.cs
- ApplicationDirectoryMembershipCondition.cs
- DragEvent.cs
- CodeConditionStatement.cs
- mda.cs
- DefaultValueConverter.cs
- DefaultTraceListener.cs
- MetadataWorkspace.cs
- MD5.cs
- MailAddress.cs
- AlternateView.cs
- Compiler.cs
- AsmxEndpointPickerExtension.cs
- VBIdentifierTrimConverter.cs
- OperationParameterInfoCollection.cs
- CodeThrowExceptionStatement.cs
- VisemeEventArgs.cs
- HtmlInputText.cs
- XmlEncodedRawTextWriter.cs
- IRCollection.cs
- TTSEvent.cs
- CroppedBitmap.cs
- XamlSerializer.cs
- XmlSchemaAnnotated.cs
- RuleSettingsCollection.cs
- XamlToRtfParser.cs
- TCPListener.cs
- HtmlWindow.cs
- mil_commands.cs
- NameValuePermission.cs
- XmlObjectSerializerWriteContextComplex.cs
- AsyncContentLoadedEventArgs.cs
- EntityConnection.cs
- IdentityHolder.cs
- UInt32Storage.cs
- PenContext.cs
- IisTraceWebEventProvider.cs
- ImportCatalogPart.cs