Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- XamlFxTrace.cs
- SoapSchemaExporter.cs
- DataGridLinkButton.cs
- DeclaredTypeValidatorAttribute.cs
- BlurBitmapEffect.cs
- SettingsAttributes.cs
- sqlnorm.cs
- AlphaSortedEnumConverter.cs
- UIElementParaClient.cs
- XmlCDATASection.cs
- ActivationServices.cs
- FixedStringLookup.cs
- DayRenderEvent.cs
- CardSpaceException.cs
- EncryptedPackageFilter.cs
- GridViewEditEventArgs.cs
- StandardCommands.cs
- WebPartConnectionCollection.cs
- LinearGradientBrush.cs
- ActionFrame.cs
- HttpDebugHandler.cs
- PrintingPermission.cs
- XD.cs
- DataGridViewSortCompareEventArgs.cs
- DbProviderServices.cs
- StylusTip.cs
- Journaling.cs
- DataGridPagerStyle.cs
- OneOfElement.cs
- HttpException.cs
- NativeMethods.cs
- ErrorRuntimeConfig.cs
- MenuScrollingVisibilityConverter.cs
- TreeViewBindingsEditorForm.cs
- UnsafeNativeMethodsCLR.cs
- filewebresponse.cs
- ellipse.cs
- ClassData.cs
- baseaxisquery.cs
- NetSectionGroup.cs
- GroupByQueryOperator.cs
- WpfKnownMemberInvoker.cs
- RepeaterItem.cs
- TextParagraphProperties.cs
- PublishLicense.cs
- DbConnectionPoolIdentity.cs
- ChangePassword.cs
- DispatcherProcessingDisabled.cs
- StrongTypingException.cs
- Rules.cs
- XmlNodeWriter.cs
- WebPartRestoreVerb.cs
- Ray3DHitTestResult.cs
- FileDataSourceCache.cs
- DataPager.cs
- ReturnValue.cs
- Monitor.cs
- RepeaterItem.cs
- ComponentManagerBroker.cs
- StorageEndPropertyMapping.cs
- BinaryObjectWriter.cs
- BuildProviderAppliesToAttribute.cs
- PropertyManager.cs
- ButtonChrome.cs
- TrackingServices.cs
- InitializationEventAttribute.cs
- SecureConversationSecurityTokenParameters.cs
- FlowStep.cs
- ObjectSet.cs
- SmiContext.cs
- XmlSchemaImporter.cs
- BitmapFrameDecode.cs
- StreamFormatter.cs
- BrowserCapabilitiesCompiler.cs
- EndOfStreamException.cs
- ToolTipAutomationPeer.cs
- WhitespaceRuleReader.cs
- ScriptComponentDescriptor.cs
- CharEntityEncoderFallback.cs
- ReadOnlyDictionary.cs
- PartialCachingAttribute.cs
- RepeaterDataBoundAdapter.cs
- SqlDataSourceSelectingEventArgs.cs
- ExtendedPropertyInfo.cs
- TimeoutException.cs
- FieldDescriptor.cs
- ReferenceConverter.cs
- PersonalizationProviderCollection.cs
- SafeNativeMethods.cs
- SkipStoryboardToFill.cs
- UrlMappingCollection.cs
- ElementHostPropertyMap.cs
- ProviderConnectionPoint.cs
- ProgressChangedEventArgs.cs
- Accessible.cs
- CurrentTimeZone.cs
- RemotingServices.cs
- OLEDB_Util.cs
- HttpPostLocalhostServerProtocol.cs
- ConstructorNeedsTagAttribute.cs