Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ToolStripContentPanelRenderEventArgs.cs / 1 / ToolStripContentPanelRenderEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Drawing; ////// ToolStripContentPanelRenderEventArgs /// public class ToolStripContentPanelRenderEventArgs : EventArgs { private ToolStripContentPanel contentPanel = null; private Graphics graphics = null; private bool handled = false; ////// This class represents all the information to render the toolStrip /// public ToolStripContentPanelRenderEventArgs(Graphics g, ToolStripContentPanel contentPanel) { this.contentPanel = contentPanel; this.graphics = g; } ////// the graphics object to draw with /// public Graphics Graphics { get { return graphics; } } public bool Handled { get { return handled; } set { handled = value; } } ////// Represents which toolStrip was affected by the click /// public ToolStripContentPanel ToolStripContentPanel { get { return contentPanel; } } } } // 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
- ImageMap.cs
- DBPropSet.cs
- DefaultPropertyAttribute.cs
- ViewGenerator.cs
- SqlError.cs
- DataObjectMethodAttribute.cs
- StatusStrip.cs
- PeerCollaborationPermission.cs
- CqlLexer.cs
- XmlNamespaceMapping.cs
- TypedAsyncResult.cs
- StyleSelector.cs
- QilScopedVisitor.cs
- MULTI_QI.cs
- LayoutTable.cs
- SmiSettersStream.cs
- MultipleViewPattern.cs
- SelectedDatesCollection.cs
- AutomationPropertyInfo.cs
- ViewCellSlot.cs
- complextypematerializer.cs
- Column.cs
- TypeReference.cs
- PropertyGridCommands.cs
- Parameter.cs
- NamespaceEmitter.cs
- CompoundFileReference.cs
- SpeechDetectedEventArgs.cs
- ColorTranslator.cs
- PersonalizationStateInfo.cs
- Point.cs
- X509CertificateClaimSet.cs
- Collection.cs
- XmlProcessingInstruction.cs
- ConnectionStringSettingsCollection.cs
- MonitoringDescriptionAttribute.cs
- sitestring.cs
- BitConverter.cs
- unitconverter.cs
- MessageBuilder.cs
- DynamicDataManager.cs
- CalendarButtonAutomationPeer.cs
- Point3DKeyFrameCollection.cs
- Base64Stream.cs
- ConfigurationStrings.cs
- PropertyChangingEventArgs.cs
- ListControl.cs
- ImageAttributes.cs
- SplitterEvent.cs
- ComPlusAuthorization.cs
- SqlWriter.cs
- DiscoveryDocument.cs
- QueryActivatableWorkflowsCommand.cs
- Vector3DConverter.cs
- PingOptions.cs
- OutgoingWebResponseContext.cs
- CodeConstructor.cs
- LogReservationCollection.cs
- EntityModelBuildProvider.cs
- RedistVersionInfo.cs
- FormatStringEditor.cs
- XmlBufferReader.cs
- VectorKeyFrameCollection.cs
- TimelineGroup.cs
- MsmqIntegrationInputMessage.cs
- FilterableData.cs
- WindowsFormsHost.cs
- InfoCardCryptoHelper.cs
- TrackingConditionCollection.cs
- SqlUdtInfo.cs
- VSWCFServiceContractGenerator.cs
- DataGridViewCell.cs
- TypeElement.cs
- RegexInterpreter.cs
- WindowsListViewScroll.cs
- DynamicQueryableWrapper.cs
- QilFactory.cs
- CancelEventArgs.cs
- SelectionPattern.cs
- ArgumentsParser.cs
- ManagedIStream.cs
- AttributeData.cs
- FixedFlowMap.cs
- ConnectionsZone.cs
- UserControlParser.cs
- DbProviderSpecificTypePropertyAttribute.cs
- NameValueSectionHandler.cs
- TraceSection.cs
- MruCache.cs
- ReadOnlyAttribute.cs
- LineSegment.cs
- WebPartEditVerb.cs
- TextElementEnumerator.cs
- CaseExpr.cs
- MailAddressCollection.cs
- MetadataItem.cs
- MessageEncodingBindingElementImporter.cs
- WebPartRestoreVerb.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- HashUtility.cs