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
- ServiceDescriptionImporter.cs
- Graphics.cs
- SafeTokenHandle.cs
- ConnectionPointCookie.cs
- Asn1IntegerConverter.cs
- DataGridViewColumnEventArgs.cs
- grammarelement.cs
- TextServicesContext.cs
- _DisconnectOverlappedAsyncResult.cs
- SQLMembershipProvider.cs
- DiffuseMaterial.cs
- DbgUtil.cs
- SqlBuilder.cs
- bidPrivateBase.cs
- TextInfo.cs
- SerializationStore.cs
- XhtmlBasicTextViewAdapter.cs
- XPathNodeInfoAtom.cs
- MimePart.cs
- SystemDropShadowChrome.cs
- EnvironmentPermission.cs
- Missing.cs
- SmtpClient.cs
- AddInIpcChannel.cs
- SqlDataSourceCache.cs
- sitestring.cs
- WizardSideBarListControlItemEventArgs.cs
- TaskHelper.cs
- DBSqlParser.cs
- BufferedStream2.cs
- DataSourceCache.cs
- DiscardableAttribute.cs
- ConfigurationConverterBase.cs
- MethodAccessException.cs
- Membership.cs
- wgx_exports.cs
- IndexedString.cs
- Evidence.cs
- Exceptions.cs
- RenderCapability.cs
- Facet.cs
- ViewGenerator.cs
- StringWriter.cs
- PositiveTimeSpanValidator.cs
- DependencyPropertyHelper.cs
- TransactionContextManager.cs
- TextServicesCompartmentContext.cs
- PointLightBase.cs
- StorageComplexTypeMapping.cs
- IPEndPoint.cs
- MarkupCompilePass2.cs
- RsaSecurityTokenAuthenticator.cs
- ListMarkerSourceInfo.cs
- RoutedEventArgs.cs
- FastPropertyAccessor.cs
- ComEventsMethod.cs
- ClonableStack.cs
- RegexGroup.cs
- httpserverutility.cs
- dataSvcMapFileLoader.cs
- SqlLiftWhereClauses.cs
- XmlComment.cs
- OleDbEnumerator.cs
- ContextBase.cs
- SolidColorBrush.cs
- CanonicalFormWriter.cs
- MouseEventArgs.cs
- webproxy.cs
- SMSvcHost.cs
- CompressEmulationStream.cs
- DetailsViewUpdatedEventArgs.cs
- ObservableCollectionDefaultValueFactory.cs
- FlowDocumentPaginator.cs
- X509Utils.cs
- UInt16Storage.cs
- ConvertEvent.cs
- DiscoveryMessageSequenceGenerator.cs
- TransformationRules.cs
- ResourceDisplayNameAttribute.cs
- DbParameterCollectionHelper.cs
- XamlBrushSerializer.cs
- TextTreeUndoUnit.cs
- Speller.cs
- XmlHierarchicalDataSourceView.cs
- CapabilitiesPattern.cs
- COAUTHINFO.cs
- ListViewTableRow.cs
- DesigntimeLicenseContext.cs
- ImageListUtils.cs
- Condition.cs
- StringInfo.cs
- DataKeyCollection.cs
- AccessKeyManager.cs
- ClientRequest.cs
- parserscommon.cs
- DynamicPhysicalDiscoSearcher.cs
- DesignTimeType.cs
- SqlBinder.cs
- SchemaImporter.cs
- RemoteWebConfigurationHostStream.cs