Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / SolidColorBrush.cs / 1 / SolidColorBrush.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: SolidColorBrush.cs // // Description: This file contains the implementation of SolidColorBrush. // The SolidColorBrush is the simplest of the Brushes. consisting // as it does of just a color. // // History: // 04/28/2003 : adsmith - Created it. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.IO; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Reflection; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Media; using System.Windows.Markup; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// SolidColorBrush /// The SolidColorBrush is the simplest of the Brushes. It can be used to /// fill an area with a solid color, which can be animate. /// public sealed partial class SolidColorBrush : Brush { #region Constructors ////// Default constructor for SolidColorBrush. /// public SolidColorBrush() { } ////// SolidColorBrush - The constructor accepts the color of the brush /// /// The color value. public SolidColorBrush(Color color) { Color = color; } #endregion Constructors #region Serialization // This enum is used to identify brush types for deserialization in the // ConvertCustomBinaryToObject method. If we support more types of brushes, // then we may have to expose this publically and add more enum values. internal enum SerializationBrushType : byte { Unknown = 0, KnownSolidColor = 1, OtherColor = 2, } ////// Serialize this object using the passed writer in compact BAML binary format. /// ////// This is called ONLY from the Parser and is not a general public method. /// ////// Thrown if "writer" is null. /// [FriendAccessAllowed] // Built into Core, also used by Framework. internal static bool SerializeOn(BinaryWriter writer, string stringValue) { // ********* VERY IMPORTANT NOTE ***************** // If this method is changed, then XamlBrushSerilaizer.SerializeOn() needs // to be correspondingly changed as well. That code is linked into PBT.dll // and duplicates the code below to avoid pulling in SCB & base classes as well. // ********* VERY IMPORTANT NOTE ***************** if (writer == null) { throw new ArgumentNullException("writer"); } KnownColor knownColor = KnownColors.ColorStringToKnownColor(stringValue); if (knownColor != KnownColor.UnknownColor) { // Serialize values of the type "Red", "Blue" and other names writer.Write((byte)SerializationBrushType.KnownSolidColor); writer.Write((uint)knownColor); return true; } else { // Serialize values of the type "#F00", "#0000FF" and other hex color values. // We don't have a good way to check if this is valid without running the // converter at this point, so just store the string if it has at least a // minimum length of 4. stringValue = stringValue.Trim(); if (stringValue.Length > 3) { writer.Write((byte)SerializationBrushType.OtherColor); writer.Write(stringValue); return true; } } return false; } ////// Deserialize this object using the passed reader. Throw an exception if /// the format is not a solid color brush. /// ////// This is called ONLY from the Parser and is not a general public method. /// ////// Thrown if "reader" is null. /// public static object DeserializeFrom(BinaryReader reader) { if (reader == null) { throw new ArgumentNullException("reader"); } return DeserializeFrom(reader, null); } internal static object DeserializeFrom(BinaryReader reader, ITypeDescriptorContext context) { SerializationBrushType brushType = (SerializationBrushType)reader.ReadByte(); if (brushType == SerializationBrushType.KnownSolidColor) { uint knownColorUint = reader.ReadUInt32(); return KnownColors.SolidColorBrushFromUint(knownColorUint); } else if (brushType == SerializationBrushType.OtherColor) { string colorValue = reader.ReadString(); BrushConverter converter = new BrushConverter(); return converter.ConvertFromInvariantString(context, colorValue); } else { throw new Exception(SR.Get(SRID.BrushUnknownBamlType)); } } #endregion Serialization #region ToString ////// CanSerializeToString - an internal helper method which determines whether this object /// can fully serialize to a string with no data loss. /// ////// bool - true if full fidelity serialization is possible, false if not. /// internal override bool CanSerializeToString() { if (HasAnimatedProperties || HasAnyExpression() || !Transform.IsIdentity || !DoubleUtil.AreClose(Opacity, Brush.c_Opacity)) { return false; } return true; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// internal override string ConvertToString(string format, IFormatProvider provider) { return Color.ConvertToString(format, provider); } #endregion } } // 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. // // File: SolidColorBrush.cs // // Description: This file contains the implementation of SolidColorBrush. // The SolidColorBrush is the simplest of the Brushes. consisting // as it does of just a color. // // History: // 04/28/2003 : adsmith - Created it. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.IO; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Reflection; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Media; using System.Windows.Markup; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// SolidColorBrush /// The SolidColorBrush is the simplest of the Brushes. It can be used to /// fill an area with a solid color, which can be animate. /// public sealed partial class SolidColorBrush : Brush { #region Constructors ////// Default constructor for SolidColorBrush. /// public SolidColorBrush() { } ////// SolidColorBrush - The constructor accepts the color of the brush /// /// The color value. public SolidColorBrush(Color color) { Color = color; } #endregion Constructors #region Serialization // This enum is used to identify brush types for deserialization in the // ConvertCustomBinaryToObject method. If we support more types of brushes, // then we may have to expose this publically and add more enum values. internal enum SerializationBrushType : byte { Unknown = 0, KnownSolidColor = 1, OtherColor = 2, } ////// Serialize this object using the passed writer in compact BAML binary format. /// ////// This is called ONLY from the Parser and is not a general public method. /// ////// Thrown if "writer" is null. /// [FriendAccessAllowed] // Built into Core, also used by Framework. internal static bool SerializeOn(BinaryWriter writer, string stringValue) { // ********* VERY IMPORTANT NOTE ***************** // If this method is changed, then XamlBrushSerilaizer.SerializeOn() needs // to be correspondingly changed as well. That code is linked into PBT.dll // and duplicates the code below to avoid pulling in SCB & base classes as well. // ********* VERY IMPORTANT NOTE ***************** if (writer == null) { throw new ArgumentNullException("writer"); } KnownColor knownColor = KnownColors.ColorStringToKnownColor(stringValue); if (knownColor != KnownColor.UnknownColor) { // Serialize values of the type "Red", "Blue" and other names writer.Write((byte)SerializationBrushType.KnownSolidColor); writer.Write((uint)knownColor); return true; } else { // Serialize values of the type "#F00", "#0000FF" and other hex color values. // We don't have a good way to check if this is valid without running the // converter at this point, so just store the string if it has at least a // minimum length of 4. stringValue = stringValue.Trim(); if (stringValue.Length > 3) { writer.Write((byte)SerializationBrushType.OtherColor); writer.Write(stringValue); return true; } } return false; } ////// Deserialize this object using the passed reader. Throw an exception if /// the format is not a solid color brush. /// ////// This is called ONLY from the Parser and is not a general public method. /// ////// Thrown if "reader" is null. /// public static object DeserializeFrom(BinaryReader reader) { if (reader == null) { throw new ArgumentNullException("reader"); } return DeserializeFrom(reader, null); } internal static object DeserializeFrom(BinaryReader reader, ITypeDescriptorContext context) { SerializationBrushType brushType = (SerializationBrushType)reader.ReadByte(); if (brushType == SerializationBrushType.KnownSolidColor) { uint knownColorUint = reader.ReadUInt32(); return KnownColors.SolidColorBrushFromUint(knownColorUint); } else if (brushType == SerializationBrushType.OtherColor) { string colorValue = reader.ReadString(); BrushConverter converter = new BrushConverter(); return converter.ConvertFromInvariantString(context, colorValue); } else { throw new Exception(SR.Get(SRID.BrushUnknownBamlType)); } } #endregion Serialization #region ToString ////// CanSerializeToString - an internal helper method which determines whether this object /// can fully serialize to a string with no data loss. /// ////// bool - true if full fidelity serialization is possible, false if not. /// internal override bool CanSerializeToString() { if (HasAnimatedProperties || HasAnyExpression() || !Transform.IsIdentity || !DoubleUtil.AreClose(Opacity, Brush.c_Opacity)) { return false; } return true; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// internal override string ConvertToString(string format, IFormatProvider provider) { return Color.ConvertToString(format, provider); } #endregion } } // 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
- DataGridColumnCollectionEditor.cs
- SettingsPropertyValueCollection.cs
- HitTestWithPointDrawingContextWalker.cs
- XmlCollation.cs
- DataGridColumn.cs
- CachedTypeface.cs
- PrimarySelectionAdorner.cs
- RepeaterCommandEventArgs.cs
- OleDbSchemaGuid.cs
- TextEditorCopyPaste.cs
- BindingValueChangedEventArgs.cs
- SoapSchemaExporter.cs
- InputLanguageEventArgs.cs
- DesignerActionGlyph.cs
- WindowsIPAddress.cs
- Timer.cs
- ClientTargetCollection.cs
- Rotation3DAnimation.cs
- SelectedGridItemChangedEvent.cs
- LinearGradientBrush.cs
- ServiceNameCollection.cs
- ChameleonKey.cs
- ModelPerspective.cs
- AutoSizeToolBoxItem.cs
- AutomationIdentifierGuids.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- HashSetEqualityComparer.cs
- SourceLineInfo.cs
- MobileComponentEditorPage.cs
- ProfileProvider.cs
- BitmapEffectDrawingContent.cs
- InvalidCardException.cs
- TypeSystemHelpers.cs
- BodyWriter.cs
- LocalizableResourceBuilder.cs
- APCustomTypeDescriptor.cs
- RemoteWebConfigurationHost.cs
- IIS7UserPrincipal.cs
- ProxyWebPart.cs
- RemotingException.cs
- RequestQueue.cs
- RegistryExceptionHelper.cs
- AliasGenerator.cs
- XamlPathDataSerializer.cs
- DateTimeFormat.cs
- VideoDrawing.cs
- KoreanLunisolarCalendar.cs
- BezierSegment.cs
- QuaternionValueSerializer.cs
- SerializableAttribute.cs
- ExpressionContext.cs
- FormsAuthenticationTicket.cs
- Switch.cs
- Rect3D.cs
- XomlCompilerResults.cs
- Operand.cs
- XmlHierarchyData.cs
- TypeBuilderInstantiation.cs
- TypeHelpers.cs
- DateTimeUtil.cs
- OleDbDataReader.cs
- UnsafeCollabNativeMethods.cs
- ActivityStatusChangeEventArgs.cs
- PropertyItem.cs
- AttachInfo.cs
- HitTestDrawingContextWalker.cs
- AnnouncementEndpointElement.cs
- unitconverter.cs
- WindowsGraphicsCacheManager.cs
- ObservableDictionary.cs
- ListParagraph.cs
- EditorZoneBase.cs
- DBConnection.cs
- WebPageTraceListener.cs
- RemoveFromCollection.cs
- SpellerStatusTable.cs
- XmlElementAttribute.cs
- WindowsListView.cs
- BitmapPalettes.cs
- ErrorHandlingReceiver.cs
- OleDbTransaction.cs
- DragDeltaEventArgs.cs
- TypedElement.cs
- XmlBinaryWriterSession.cs
- AmbientEnvironment.cs
- FormsAuthenticationUser.cs
- FastEncoder.cs
- InvalidOperationException.cs
- ClosableStream.cs
- SvcMapFileSerializer.cs
- EmptyEnumerator.cs
- CollectionBase.cs
- BamlReader.cs
- DataObjectAttribute.cs
- Material.cs
- Identity.cs
- xml.cs
- WindowsListView.cs
- DataGridCaption.cs
- ValidatorUtils.cs