Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / OwnerDrawPropertyBag.cs / 1305376 / OwnerDrawPropertyBag.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.Diagnostics.CodeAnalysis; using System.Windows.Forms.Internal; using System.Windows.Forms; using Microsoft.Win32; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// /// /// Class used to pass new font/color information around for "partial" ownerdraw list/treeview items. /// ///// [SuppressMessage("Microsoft.Usage", "CA2240:ImplementISerializableCorrectly")] [Serializable] public class OwnerDrawPropertyBag : MarshalByRefObject, ISerializable { Font font = null; Color foreColor = Color.Empty; Color backColor = Color.Empty; Control.FontHandleWrapper fontWrapper = null; private static object internalSyncObject = new object(); /** * Constructor used in deserialization * Has to be protected because OwnerDrawPropertyBag is not sealed. FxCop Rule CA2229. */ protected OwnerDrawPropertyBag(SerializationInfo info, StreamingContext context) { foreach (SerializationEntry entry in info) { if (entry.Name == "Font") { // SEC font = (Font) entry.Value; } else if (entry.Name =="ForeColor") { // SEC foreColor =(Color)entry.Value; } else if (entry.Name =="BackColor") { // SEC backColor = (Color)entry.Value; } } } internal OwnerDrawPropertyBag(){ } /// /// /// public Font Font { get { return font; } set { font = value; } } ///[To be supplied.] ////// /// public Color ForeColor { get { return foreColor; } set { foreColor = value; } } ///[To be supplied.] ////// /// public Color BackColor { get { return backColor; } set { backColor = value; } } internal IntPtr FontHandle { get { if (fontWrapper == null) { fontWrapper = new Control.FontHandleWrapper(Font); } return fontWrapper.Handle; } } ///[To be supplied.] ////// /// Returns whether or not this property bag contains all default values (is empty) /// public virtual bool IsEmpty() { return (Font == null && foreColor.IsEmpty && backColor.IsEmpty); } ////// /// Copies the bag. Always returns a valid ODPB object /// public static OwnerDrawPropertyBag Copy(OwnerDrawPropertyBag value) { lock(internalSyncObject) { OwnerDrawPropertyBag ret = new OwnerDrawPropertyBag(); if (value == null) return ret; ret.backColor = value.backColor; ret.foreColor = value.foreColor; ret.Font = value.font; return ret; } } ////// /// ISerializable private implementation /// ///[SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] void ISerializable.GetObjectData(SerializationInfo si, StreamingContext context) { si.AddValue("BackColor", BackColor); si.AddValue("ForeColor", ForeColor); si.AddValue("Font", Font); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.Diagnostics.CodeAnalysis; using System.Windows.Forms.Internal; using System.Windows.Forms; using Microsoft.Win32; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// /// /// Class used to pass new font/color information around for "partial" ownerdraw list/treeview items. /// ///// [SuppressMessage("Microsoft.Usage", "CA2240:ImplementISerializableCorrectly")] [Serializable] public class OwnerDrawPropertyBag : MarshalByRefObject, ISerializable { Font font = null; Color foreColor = Color.Empty; Color backColor = Color.Empty; Control.FontHandleWrapper fontWrapper = null; private static object internalSyncObject = new object(); /** * Constructor used in deserialization * Has to be protected because OwnerDrawPropertyBag is not sealed. FxCop Rule CA2229. */ protected OwnerDrawPropertyBag(SerializationInfo info, StreamingContext context) { foreach (SerializationEntry entry in info) { if (entry.Name == "Font") { // SEC font = (Font) entry.Value; } else if (entry.Name =="ForeColor") { // SEC foreColor =(Color)entry.Value; } else if (entry.Name =="BackColor") { // SEC backColor = (Color)entry.Value; } } } internal OwnerDrawPropertyBag(){ } /// /// /// public Font Font { get { return font; } set { font = value; } } ///[To be supplied.] ////// /// public Color ForeColor { get { return foreColor; } set { foreColor = value; } } ///[To be supplied.] ////// /// public Color BackColor { get { return backColor; } set { backColor = value; } } internal IntPtr FontHandle { get { if (fontWrapper == null) { fontWrapper = new Control.FontHandleWrapper(Font); } return fontWrapper.Handle; } } ///[To be supplied.] ////// /// Returns whether or not this property bag contains all default values (is empty) /// public virtual bool IsEmpty() { return (Font == null && foreColor.IsEmpty && backColor.IsEmpty); } ////// /// Copies the bag. Always returns a valid ODPB object /// public static OwnerDrawPropertyBag Copy(OwnerDrawPropertyBag value) { lock(internalSyncObject) { OwnerDrawPropertyBag ret = new OwnerDrawPropertyBag(); if (value == null) return ret; ret.backColor = value.backColor; ret.foreColor = value.foreColor; ret.Font = value.font; return ret; } } ////// /// ISerializable private implementation /// ///[SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] void ISerializable.GetObjectData(SerializationInfo si, StreamingContext context) { si.AddValue("BackColor", BackColor); si.AddValue("ForeColor", ForeColor); si.AddValue("Font", Font); } } } // 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
- MDIClient.cs
- Array.cs
- XmlSerializerAssemblyAttribute.cs
- ExpressionContext.cs
- TextMetrics.cs
- ForwardPositionQuery.cs
- WebBrowserProgressChangedEventHandler.cs
- SqlXml.cs
- SmtpTransport.cs
- NumericPagerField.cs
- ContentWrapperAttribute.cs
- ValidationHelpers.cs
- HwndSourceParameters.cs
- InvokePatternIdentifiers.cs
- SqlConnectionStringBuilder.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- ObjectStateFormatter.cs
- BuildManagerHost.cs
- DateTimeFormatInfo.cs
- ContentElement.cs
- ExtensionElementCollection.cs
- ListView.cs
- cache.cs
- NodeLabelEditEvent.cs
- ToolStripSplitButton.cs
- EventHandlerList.cs
- DataGridViewRowHeaderCell.cs
- ResourceDescriptionAttribute.cs
- CachedFontFamily.cs
- LineGeometry.cs
- DetailsViewUpdatedEventArgs.cs
- SimpleRecyclingCache.cs
- SoapFormatExtensions.cs
- ColorConvertedBitmap.cs
- SqlVisitor.cs
- TypedTableBaseExtensions.cs
- TextServicesDisplayAttribute.cs
- DataObjectCopyingEventArgs.cs
- BamlLocalizabilityResolver.cs
- AuthenticationSection.cs
- DelayedRegex.cs
- InternalConfigConfigurationFactory.cs
- CharAnimationBase.cs
- CodeArrayIndexerExpression.cs
- Models.cs
- _ConnectionGroup.cs
- HttpWebRequest.cs
- ToolStripProgressBar.cs
- WeakReference.cs
- SqlInternalConnectionSmi.cs
- DbException.cs
- LicFileLicenseProvider.cs
- PageSetupDialog.cs
- CacheDependency.cs
- ManageRequest.cs
- CompoundFileStreamReference.cs
- DSASignatureFormatter.cs
- RsaKeyGen.cs
- VisualStyleTypesAndProperties.cs
- DependencyPropertyKind.cs
- ExpressionVisitor.cs
- _ContextAwareResult.cs
- dsa.cs
- ThreadPoolTaskScheduler.cs
- DrawingAttributeSerializer.cs
- COM2IPerPropertyBrowsingHandler.cs
- HotSpotCollection.cs
- ParameterCollection.cs
- NextPreviousPagerField.cs
- BrowserCapabilitiesCompiler.cs
- DoubleAnimation.cs
- WebServiceErrorEvent.cs
- PrintPreviewControl.cs
- BamlResourceSerializer.cs
- AuthenticationConfig.cs
- TPLETWProvider.cs
- InvalidPrinterException.cs
- HttpListenerException.cs
- TraceData.cs
- RemoteWebConfigurationHostServer.cs
- _NtlmClient.cs
- SystemIPGlobalProperties.cs
- RemoteWebConfigurationHostServer.cs
- ProcessHostMapPath.cs
- InternalConfigRoot.cs
- TabControl.cs
- IdentifierElement.cs
- FontUnit.cs
- StylusDownEventArgs.cs
- WebPartConnectionsCancelVerb.cs
- SoapSchemaExporter.cs
- RootBrowserWindowAutomationPeer.cs
- PresentationSource.cs
- PrimitiveXmlSerializers.cs
- EntityClassGenerator.cs
- WasHttpHandlersInstallComponent.cs
- UpdatePanelTriggerCollection.cs
- ObjectDataSourceView.cs
- OuterGlowBitmapEffect.cs
- ArgumentOutOfRangeException.cs