Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CommonUI / System / Drawing / Design / PaintValueEventArgs.cs / 1 / 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
- MergeFilterQuery.cs
- DPCustomTypeDescriptor.cs
- Zone.cs
- initElementDictionary.cs
- CommandValueSerializer.cs
- CustomCategoryAttribute.cs
- SizeKeyFrameCollection.cs
- MediaElementAutomationPeer.cs
- DateTimeOffsetConverter.cs
- QilFunction.cs
- SimpleTextLine.cs
- PrintDialog.cs
- ChangeBlockUndoRecord.cs
- GridViewRowPresenter.cs
- XmlNode.cs
- ConfigurationPropertyAttribute.cs
- BroadcastEventHelper.cs
- StructuredType.cs
- DataGridViewCellParsingEventArgs.cs
- TraceContext.cs
- RequiredFieldValidator.cs
- Evidence.cs
- SQLSingleStorage.cs
- XPathConvert.cs
- Authorization.cs
- TypeReference.cs
- ElementUtil.cs
- WorkflowMarkupSerializationProvider.cs
- ProcessHostMapPath.cs
- XpsSerializationManagerAsync.cs
- PropertyPushdownHelper.cs
- PrintDialogException.cs
- CheckedListBox.cs
- CheckBox.cs
- ReceiveActivityValidator.cs
- ThrowHelper.cs
- BaseProcessor.cs
- ListViewItemEventArgs.cs
- StatusBar.cs
- ApplicationSecurityManager.cs
- RelativeSource.cs
- SymmetricSecurityProtocol.cs
- DispatchWrapper.cs
- SectionVisual.cs
- PcmConverter.cs
- XhtmlTextWriter.cs
- LazyTextWriterCreator.cs
- RelationshipDetailsRow.cs
- ResourcesBuildProvider.cs
- ImageButton.cs
- ProcessInfo.cs
- SecUtil.cs
- InvalidPropValue.cs
- AppSettingsExpressionBuilder.cs
- WebPartCancelEventArgs.cs
- MenuEventArgs.cs
- IntegerValidatorAttribute.cs
- OleDbConnectionFactory.cs
- ProtocolsConfigurationHandler.cs
- XmlNodeChangedEventManager.cs
- OuterProxyWrapper.cs
- TimeSpan.cs
- METAHEADER.cs
- ServiceDurableInstance.cs
- GroupBox.cs
- StylusSystemGestureEventArgs.cs
- Message.cs
- RNGCryptoServiceProvider.cs
- WebPageTraceListener.cs
- GradientStop.cs
- ToolStripProgressBar.cs
- ListBindingHelper.cs
- SessionStateItemCollection.cs
- UrlEncodedParameterWriter.cs
- DbCommandDefinition.cs
- _IPv4Address.cs
- SamlConstants.cs
- DataSourceXmlSerializationAttribute.cs
- QilFactory.cs
- BasicExpressionVisitor.cs
- Encoding.cs
- StringValidatorAttribute.cs
- NumericUpDown.cs
- XPathAncestorQuery.cs
- ClassicBorderDecorator.cs
- AmbientLight.cs
- DoubleAnimationUsingPath.cs
- BinaryParser.cs
- RemoteWebConfigurationHostServer.cs
- XPathBinder.cs
- DetailsView.cs
- CompositeScriptReference.cs
- WinEventWrap.cs
- MethodBuilderInstantiation.cs
- PageHandlerFactory.cs
- SqlSelectStatement.cs
- KnowledgeBase.cs
- PointLightBase.cs
- DelegateBodyWriter.cs
- CacheForPrimitiveTypes.cs