Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / ToolStripItemTextRenderEventArgs.cs / 1 / ToolStripItemTextRenderEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Drawing; using System.Windows.Forms.Internal; using System.Windows.Forms.ButtonInternal; ////// /// This class represents all the information to render the winbar /// public class ToolStripItemTextRenderEventArgs : ToolStripItemRenderEventArgs { private string text = null; private Rectangle textRectangle = Rectangle.Empty; private Color textColor = SystemColors.ControlText; private Font textFont = null; private ContentAlignment textAlignment; private ToolStripTextDirection textDirection = ToolStripTextDirection.Horizontal; private TextFormatFlags textFormat = TextFormatFlags.Default; private Color defaultTextColor = SystemColors.ControlText; private bool textColorChanged = false; ////// /// This class represents all the information to render the winbar /// public ToolStripItemTextRenderEventArgs(Graphics g, ToolStripItem item, string text, Rectangle textRectangle, Color textColor, Font textFont, TextFormatFlags format) : base(g, item) { this.text = text; this.textRectangle = textRectangle; this.defaultTextColor = textColor; this.textFont = textFont; this.textAlignment = item.TextAlign; this.textFormat = format; textDirection = item.TextDirection; } ////// /// This class represents all the information to render the winbar /// public ToolStripItemTextRenderEventArgs(Graphics g, ToolStripItem item, string text, Rectangle textRectangle, Color textColor, Font textFont, ContentAlignment textAlign) : base(g, item) { this.text = text; this.textRectangle = textRectangle; this.defaultTextColor = textColor; this.textFont = textFont; this.textFormat = ToolStripItemInternalLayout.ContentAlignToTextFormat(textAlign, item.RightToLeft == RightToLeft.Yes); // in 2K and XP++ hide underlined &File unless ALT is pressed this.textFormat = (item.ShowKeyboardCues) ? textFormat : textFormat | TextFormatFlags.HidePrefix; textDirection = item.TextDirection; } ////// /// the string to draw /// public string Text { get { return text; } set { text = value; } } ////// /// the color to draw the text /// public Color TextColor { get { if (textColorChanged) { return textColor; } return DefaultTextColor; } set { textColor = value; textColorChanged=true; } } // internal Color DefaultTextColor { get { return defaultTextColor; } set { defaultTextColor = value; } } ////// /// the font to draw the text /// public Font TextFont { get { return textFont; } set { textFont = value; } } ////// /// the rectangle to draw the text in /// public Rectangle TextRectangle { get { return textRectangle; } set { textRectangle = value; } } ////// /// the rectangle to draw the text in /// public TextFormatFlags TextFormat { get { return textFormat; } set { textFormat = value; } } ////// /// the angle at which the text should be drawn in tenths of degrees. /// public ToolStripTextDirection TextDirection { get { return textDirection; } set { textDirection = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Drawing; using System.Windows.Forms.Internal; using System.Windows.Forms.ButtonInternal; ////// /// This class represents all the information to render the winbar /// public class ToolStripItemTextRenderEventArgs : ToolStripItemRenderEventArgs { private string text = null; private Rectangle textRectangle = Rectangle.Empty; private Color textColor = SystemColors.ControlText; private Font textFont = null; private ContentAlignment textAlignment; private ToolStripTextDirection textDirection = ToolStripTextDirection.Horizontal; private TextFormatFlags textFormat = TextFormatFlags.Default; private Color defaultTextColor = SystemColors.ControlText; private bool textColorChanged = false; ////// /// This class represents all the information to render the winbar /// public ToolStripItemTextRenderEventArgs(Graphics g, ToolStripItem item, string text, Rectangle textRectangle, Color textColor, Font textFont, TextFormatFlags format) : base(g, item) { this.text = text; this.textRectangle = textRectangle; this.defaultTextColor = textColor; this.textFont = textFont; this.textAlignment = item.TextAlign; this.textFormat = format; textDirection = item.TextDirection; } ////// /// This class represents all the information to render the winbar /// public ToolStripItemTextRenderEventArgs(Graphics g, ToolStripItem item, string text, Rectangle textRectangle, Color textColor, Font textFont, ContentAlignment textAlign) : base(g, item) { this.text = text; this.textRectangle = textRectangle; this.defaultTextColor = textColor; this.textFont = textFont; this.textFormat = ToolStripItemInternalLayout.ContentAlignToTextFormat(textAlign, item.RightToLeft == RightToLeft.Yes); // in 2K and XP++ hide underlined &File unless ALT is pressed this.textFormat = (item.ShowKeyboardCues) ? textFormat : textFormat | TextFormatFlags.HidePrefix; textDirection = item.TextDirection; } ////// /// the string to draw /// public string Text { get { return text; } set { text = value; } } ////// /// the color to draw the text /// public Color TextColor { get { if (textColorChanged) { return textColor; } return DefaultTextColor; } set { textColor = value; textColorChanged=true; } } // internal Color DefaultTextColor { get { return defaultTextColor; } set { defaultTextColor = value; } } ////// /// the font to draw the text /// public Font TextFont { get { return textFont; } set { textFont = value; } } ////// /// the rectangle to draw the text in /// public Rectangle TextRectangle { get { return textRectangle; } set { textRectangle = value; } } ////// /// the rectangle to draw the text in /// public TextFormatFlags TextFormat { get { return textFormat; } set { textFormat = value; } } ////// /// the angle at which the text should be drawn in tenths of degrees. /// public ToolStripTextDirection TextDirection { get { return textDirection; } set { textDirection = value; } } } } // 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
- WebPartConnectionsCancelEventArgs.cs
- RequestContext.cs
- safex509handles.cs
- Token.cs
- TextTreeObjectNode.cs
- FileVersionInfo.cs
- ListViewUpdateEventArgs.cs
- serverconfig.cs
- EventDescriptor.cs
- NetworkInterface.cs
- CodeIdentifier.cs
- IdentityModelStringsVersion1.cs
- ContextStack.cs
- XmlNodeChangedEventArgs.cs
- MarkupProperty.cs
- FirewallWrapper.cs
- ToolStripDropDownMenu.cs
- Configuration.cs
- PathGeometry.cs
- ComPlusDiagnosticTraceSchemas.cs
- ADMembershipUser.cs
- TargetException.cs
- URL.cs
- SequenceDesigner.cs
- TypeGeneratedEventArgs.cs
- ArrayHelper.cs
- RectangleHotSpot.cs
- DataProtection.cs
- DataGridView.cs
- FacetDescriptionElement.cs
- DATA_BLOB.cs
- HWStack.cs
- UnaryOperationBinder.cs
- PageRequestManager.cs
- HttpListenerException.cs
- DataServiceConfiguration.cs
- WebServiceEnumData.cs
- ApplicationFileParser.cs
- TextTreeNode.cs
- EntityDataSourceContextCreatedEventArgs.cs
- WindowsGraphicsWrapper.cs
- PaintEvent.cs
- GACIdentityPermission.cs
- CheckBoxBaseAdapter.cs
- CssClassPropertyAttribute.cs
- RoleService.cs
- ExpandSegmentCollection.cs
- HwndStylusInputProvider.cs
- BounceEase.cs
- MetadataCollection.cs
- HwndSubclass.cs
- DependencyObjectProvider.cs
- Queue.cs
- CardSpacePolicyElement.cs
- UpdatePanelTrigger.cs
- DropAnimation.xaml.cs
- AsymmetricSignatureFormatter.cs
- WebBrowserPermission.cs
- DataRelationPropertyDescriptor.cs
- BaseParagraph.cs
- SafeWaitHandle.cs
- Table.cs
- IssuedTokenClientElement.cs
- _HelperAsyncResults.cs
- ChangeTracker.cs
- SqlTriggerAttribute.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- GridErrorDlg.cs
- WebPartMovingEventArgs.cs
- UIElement3D.cs
- AppDomainManager.cs
- DataServiceExpressionVisitor.cs
- ExeContext.cs
- DiscreteKeyFrames.cs
- OrderToken.cs
- ConsoleKeyInfo.cs
- JpegBitmapDecoder.cs
- Lease.cs
- LongCountAggregationOperator.cs
- DataTableMappingCollection.cs
- ImageSourceValueSerializer.cs
- OpacityConverter.cs
- ResponseStream.cs
- CaseInsensitiveOrdinalStringComparer.cs
- SqlTriggerContext.cs
- XmlHelper.cs
- DataTableNewRowEvent.cs
- XmlSchemaCollection.cs
- GroupBoxRenderer.cs
- CodePrimitiveExpression.cs
- PieceDirectory.cs
- SamlDoNotCacheCondition.cs
- GeometryDrawing.cs
- FrameworkTemplate.cs
- StylusDownEventArgs.cs
- ContentValidator.cs
- dbenumerator.cs
- ComplexTypeEmitter.cs
- IDReferencePropertyAttribute.cs
- BinaryObjectInfo.cs