Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / OwnerDrawPropertyBag.cs / 1 / 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
- SqlVisitor.cs
- DataGridCellClipboardEventArgs.cs
- ReliabilityContractAttribute.cs
- FieldAccessException.cs
- BasicCellRelation.cs
- PipelineModuleStepContainer.cs
- InputLanguageEventArgs.cs
- ContextProperty.cs
- SplayTreeNode.cs
- TypeLoadException.cs
- GenericTypeParameterConverter.cs
- EmbeddedObject.cs
- XmlSchemaValidator.cs
- BaseServiceProvider.cs
- KeyProperty.cs
- ValueTable.cs
- XPathAxisIterator.cs
- Wizard.cs
- AutomationPatternInfo.cs
- NativeMethods.cs
- DbMetaDataFactory.cs
- ClientTarget.cs
- HScrollBar.cs
- DPCustomTypeDescriptor.cs
- PeerNameRegistration.cs
- StringFreezingAttribute.cs
- BuiltInExpr.cs
- BindingNavigator.cs
- ConfigXmlWhitespace.cs
- AlgoModule.cs
- TextWriter.cs
- Expander.cs
- PropertyMapper.cs
- DBParameter.cs
- _OSSOCK.cs
- WebHttpBehavior.cs
- SecurityTokenValidationException.cs
- NamespaceEmitter.cs
- MaterializeFromAtom.cs
- PropertyGridCommands.cs
- SrgsElementList.cs
- ObjectStorage.cs
- PixelFormat.cs
- CodeCompileUnit.cs
- ClientRuntimeConfig.cs
- WebConfigurationHost.cs
- ToolStripSystemRenderer.cs
- TreeBuilder.cs
- CommandHelper.cs
- SafeRightsManagementHandle.cs
- OrthographicCamera.cs
- HasRunnableWorkflowEvent.cs
- DropShadowEffect.cs
- SmiRequestExecutor.cs
- XmlnsCache.cs
- StylusButtonEventArgs.cs
- DialogWindow.cs
- DataGrid.cs
- NewArrayExpression.cs
- GACMembershipCondition.cs
- OperatingSystem.cs
- BasicBrowserDialog.designer.cs
- DescendentsWalker.cs
- InvokeMethod.cs
- TypeElement.cs
- SupportingTokenAuthenticatorSpecification.cs
- BinaryParser.cs
- LookupTables.cs
- Stylesheet.cs
- Vertex.cs
- SerializationFieldInfo.cs
- Triangle.cs
- LinqDataSourceContextEventArgs.cs
- ReliabilityContractAttribute.cs
- XPathArrayIterator.cs
- Psha1DerivedKeyGenerator.cs
- HtmlInputCheckBox.cs
- DnsEndpointIdentity.cs
- TransformGroup.cs
- NoneExcludedImageIndexConverter.cs
- DbExpressionVisitor.cs
- ListSortDescriptionCollection.cs
- StringTraceRecord.cs
- StartUpEventArgs.cs
- AuthenticationConfig.cs
- RegistryExceptionHelper.cs
- Tablet.cs
- ClassImporter.cs
- StatusBarDrawItemEvent.cs
- ToolBar.cs
- GridViewAutoFormat.cs
- arc.cs
- XamlWriter.cs
- EncryptedReference.cs
- PointLight.cs
- Parameter.cs
- PtsContext.cs
- IISMapPath.cs
- SafeArrayRankMismatchException.cs
- OleDbParameter.cs