Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / SelectionHighlightInfo.cs / 1305600 / SelectionHighlightInfo.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Highlight render properties for selected text. // // History: // 07/01/2004 : [....] - Created // //--------------------------------------------------------------------------- using System.Windows.Media; namespace System.Windows.Documents { ////// Highlight render properties for selected text. /// internal static class SelectionHighlightInfo { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Static constructor. static SelectionHighlightInfo() { _objectMaskBrush = new SolidColorBrush(SystemColors.HighlightColor); _objectMaskBrush.Opacity = 0.5; _objectMaskBrush.Freeze(); } #endregion Constructors //------------------------------------------------------ // // Internal Properties // //----------------------------------------------------- #region Internal Properties ////// Brush used to override selected text's ForegroundProperty. /// internal static Brush ForegroundBrush { get { return SystemColors.HighlightTextBrush; } } ////// Brush used to override selected text's BackgroundProperty. /// internal static Brush BackgroundBrush { get { return SystemColors.HighlightBrush; } } ////// Brush used to highlight selected embedded objects. /// internal static Brush ObjectMaskBrush { get { return _objectMaskBrush; } } #endregion Internal Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields // Brush used to highlight selected embedded objects. private static readonly Brush _objectMaskBrush; #endregion Private Fields } } // 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
- FontWeight.cs
- Not.cs
- TcpAppDomainProtocolHandler.cs
- NavigatorOutput.cs
- FastEncoder.cs
- EntityDataSourceContextCreatingEventArgs.cs
- MatrixConverter.cs
- SafeEventLogReadHandle.cs
- ConstantSlot.cs
- XmlQueryCardinality.cs
- TextElement.cs
- GeneralTransformGroup.cs
- TraceRecord.cs
- Int32EqualityComparer.cs
- TreeNodeClickEventArgs.cs
- XmlSchemaSimpleContentRestriction.cs
- DataError.cs
- WebPartCollection.cs
- HideDisabledControlAdapter.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- TextParagraphCache.cs
- WindowsRebar.cs
- GPStream.cs
- IndentedWriter.cs
- GridViewCancelEditEventArgs.cs
- ClientRuntimeConfig.cs
- ConfigXmlComment.cs
- RegexBoyerMoore.cs
- ConfigurationStrings.cs
- XmlChildEnumerator.cs
- ProcessHostConfigUtils.cs
- PointIndependentAnimationStorage.cs
- GatewayDefinition.cs
- CapiSymmetricAlgorithm.cs
- UdpChannelListener.cs
- DataGridColumnCollectionEditor.cs
- ProcessModuleCollection.cs
- ListenerSingletonConnectionReader.cs
- DesignTimeVisibleAttribute.cs
- UserPreferenceChangingEventArgs.cs
- GridViewUpdateEventArgs.cs
- DesignTimeDataBinding.cs
- RequestSecurityToken.cs
- UnsafeNativeMethodsTablet.cs
- NamespaceExpr.cs
- XmlRawWriterWrapper.cs
- StringUtil.cs
- ToolStripItemImageRenderEventArgs.cs
- DefaultSection.cs
- SystemTcpStatistics.cs
- MessageQueueConverter.cs
- TypeConstant.cs
- Rect3D.cs
- TemplateBuilder.cs
- UriWriter.cs
- InvokeMethodDesigner.xaml.cs
- XmlSchemaImporter.cs
- SkewTransform.cs
- BitStream.cs
- XmlArrayAttribute.cs
- XmlAttributeOverrides.cs
- DataControlFieldHeaderCell.cs
- ZipPackage.cs
- CategoryNameCollection.cs
- AmbientProperties.cs
- ColorAnimationBase.cs
- RuleInfoComparer.cs
- DataRowCollection.cs
- SoundPlayer.cs
- ScriptControlDescriptor.cs
- COM2IDispatchConverter.cs
- ArraySegment.cs
- KeyNotFoundException.cs
- sqlcontext.cs
- TreeNodeClickEventArgs.cs
- VerificationException.cs
- VectorAnimationBase.cs
- DesignerResources.cs
- ColorAnimation.cs
- ValuePatternIdentifiers.cs
- ImageListUtils.cs
- DiscoveryRequestHandler.cs
- HttpsChannelListener.cs
- SiteMapProvider.cs
- GenerateScriptTypeAttribute.cs
- Subtree.cs
- PlatformNotSupportedException.cs
- BuildProviderCollection.cs
- XmlExtensionFunction.cs
- ValidationSummary.cs
- WriterOutput.cs
- NumberEdit.cs
- Drawing.cs
- SqlUtil.cs
- SHA384.cs
- QualificationDataItem.cs
- ImageFormatConverter.cs
- SqlClientFactory.cs
- NamedPipeAppDomainProtocolHandler.cs
- WasHttpModulesInstallComponent.cs