Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Design / PaintValueEventArgs.cs / 1305376 / PaintValueEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing.Design { using System; using System.ComponentModel; using System.Diagnostics; using System.Drawing; ////// /// This object is passed to UITypeEditor.PaintValue. /// It contains all the information needed for the editor to /// paint the given value, including the Rectangle in which /// the drawing should be done, and the Graphics object with which the drawing /// should be done. /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PaintValueEventArgs : EventArgs { private readonly ITypeDescriptorContext context; private readonly object valueToPaint; ////// /// The graphics object with which the drawing should be done. /// private readonly Graphics graphics; ////// /// The rectangle outlining the area in which the painting should be /// done. /// private readonly Rectangle bounds; ////// /// Creates a new PaintValueEventArgs with the given parameters. /// public PaintValueEventArgs(ITypeDescriptorContext context, object value, Graphics graphics, Rectangle bounds) { this.context = context; this.valueToPaint = value; this.graphics = graphics; if (graphics == null) throw new ArgumentNullException("graphics"); this.bounds = bounds; } ////// /// The rectangle outlining the area in which the painting should be /// done. /// public Rectangle Bounds { get { return bounds; } } ////// /// ITypeDescriptorContext object for additional information about the context this value appears in. /// public ITypeDescriptorContext Context { get { return context; } } ////// /// Graphics object with which painting should be done. /// public Graphics Graphics { get { return graphics; } } ////// /// The value to paint. /// public object Value { get { return valueToPaint; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing.Design { using System; using System.ComponentModel; using System.Diagnostics; using System.Drawing; ////// /// This object is passed to UITypeEditor.PaintValue. /// It contains all the information needed for the editor to /// paint the given value, including the Rectangle in which /// the drawing should be done, and the Graphics object with which the drawing /// should be done. /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PaintValueEventArgs : EventArgs { private readonly ITypeDescriptorContext context; private readonly object valueToPaint; ////// /// The graphics object with which the drawing should be done. /// private readonly Graphics graphics; ////// /// The rectangle outlining the area in which the painting should be /// done. /// private readonly Rectangle bounds; ////// /// Creates a new PaintValueEventArgs with the given parameters. /// public PaintValueEventArgs(ITypeDescriptorContext context, object value, Graphics graphics, Rectangle bounds) { this.context = context; this.valueToPaint = value; this.graphics = graphics; if (graphics == null) throw new ArgumentNullException("graphics"); this.bounds = bounds; } ////// /// The rectangle outlining the area in which the painting should be /// done. /// public Rectangle Bounds { get { return bounds; } } ////// /// ITypeDescriptorContext object for additional information about the context this value appears in. /// public ITypeDescriptorContext Context { get { return context; } } ////// /// Graphics object with which painting should be done. /// public Graphics Graphics { get { return graphics; } } ////// /// The value to paint. /// public object Value { get { return valueToPaint; } } } } // 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
- DateTimeValueSerializerContext.cs
- ImageSource.cs
- AsyncOperation.cs
- XamlDesignerSerializationManager.cs
- ExpressionEvaluator.cs
- NegationPusher.cs
- OrderedDictionary.cs
- SmiEventSink_DeferedProcessing.cs
- ZipIOLocalFileDataDescriptor.cs
- NativeMethods.cs
- Internal.cs
- SqlMethodTransformer.cs
- MenuItemStyle.cs
- DynamicResourceExtension.cs
- QuerySubExprEliminator.cs
- IdentityReference.cs
- TextBoxLine.cs
- COM2Enum.cs
- KeyFrames.cs
- ArrayList.cs
- ObjectAssociationEndMapping.cs
- TextBoxView.cs
- RotateTransform3D.cs
- InkCanvasSelection.cs
- ScriptReference.cs
- TransformGroup.cs
- Debugger.cs
- ResourceAssociationType.cs
- BStrWrapper.cs
- ReadOnlyCollection.cs
- MatrixAnimationUsingPath.cs
- TemplateEditingFrame.cs
- ConfigurationException.cs
- CancellationToken.cs
- XPathNavigatorKeyComparer.cs
- ReadOnlyHierarchicalDataSource.cs
- securitycriticaldataClass.cs
- SmiEventSink_DeferedProcessing.cs
- COM2ExtendedBrowsingHandler.cs
- ViewPort3D.cs
- OdbcConnectionFactory.cs
- OrderedDictionaryStateHelper.cs
- AdCreatedEventArgs.cs
- GenericPrincipal.cs
- DataColumnMappingCollection.cs
- ipaddressinformationcollection.cs
- ProfileSection.cs
- ISFClipboardData.cs
- DbgCompiler.cs
- EqualityArray.cs
- ConfigurationSectionGroup.cs
- DrawingGroup.cs
- RightsManagementPermission.cs
- DataControlLinkButton.cs
- ClrProviderManifest.cs
- DataGridViewBindingCompleteEventArgs.cs
- ReaderWriterLock.cs
- ContentValidator.cs
- DocumentXmlWriter.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- GZipStream.cs
- LinkAreaEditor.cs
- PackageRelationship.cs
- KeyboardEventArgs.cs
- TrustSection.cs
- CacheChildrenQuery.cs
- FastEncoder.cs
- _ShellExpression.cs
- rsa.cs
- StorageFunctionMapping.cs
- OutOfMemoryException.cs
- ScrollPatternIdentifiers.cs
- CommandEventArgs.cs
- CodeStatement.cs
- StylusShape.cs
- RadioButton.cs
- CaretElement.cs
- SubMenuStyleCollectionEditor.cs
- InvariantComparer.cs
- QuaternionValueSerializer.cs
- AssemblyResourceLoader.cs
- ServiceDiscoveryBehavior.cs
- Stack.cs
- DictionaryBase.cs
- XmlIlTypeHelper.cs
- HtmlInputReset.cs
- SchemaImporterExtensionElement.cs
- ProgressBarRenderer.cs
- CustomError.cs
- TextFindEngine.cs
- InteropEnvironment.cs
- GeneratedCodeAttribute.cs
- RayHitTestParameters.cs
- DateTimeFormatInfoScanner.cs
- ResourcesChangeInfo.cs
- ButtonColumn.cs
- DocumentViewerBaseAutomationPeer.cs
- SchemaElement.cs
- ControlPropertyNameConverter.cs
- FormattedTextSymbols.cs