ToolStripItemImageScaling Enumeration
.NET Framework 2.0
Note: This enumeration is new in the .NET Framework version 2.0.
Specifies whether the size of the image on a ToolStripItem is automatically adjusted to fit on a ToolStrip while retaining the original image proportions.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
To control the image size, use the ImageScalingSize property.
The following code example applies the SizeToFit member to a ToolStripButton.
Friend WithEvents imageButton As ToolStripButton Private Sub InitializeImageButtonWithToolTip() ' Construct the button and set the image-related properties. imageButton = New ToolStripButton() imageButton.Image = New Bitmap(GetType(Timer), "Timer.bmp") imageButton.ImageScaling = ToolStripItemImageScaling.SizeToFit ' Set the background color of the image to be transparent. imageButton.ImageTransparentColor = Color.FromArgb(0, 255, 0) ' Show ToolTip text, set custom ToolTip text, and turn ' off the automatic ToolTips. toolStrip1.ShowItemToolTips = True imageButton.ToolTipText = "Click for the current time" imageButton.AutoToolTip = False ' Add the button to the ToolStrip. toolStrip1.Items.Add(imageButton) End Sub
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: