ToolStripItem.ImageScaling Propriété
Définition
Obtient ou définit une valeur indiquant si une image sur un ToolStripItem est automatiquement redimensionnée pour contenir dans un conteneur.Gets or sets a value indicating whether an image on a ToolStripItem is automatically resized to fit in a container.
public:
property System::Windows::Forms::ToolStripItemImageScaling ImageScaling { System::Windows::Forms::ToolStripItemImageScaling get(); void set(System::Windows::Forms::ToolStripItemImageScaling value); };
public System.Windows.Forms.ToolStripItemImageScaling ImageScaling { get; set; }
member this.ImageScaling : System.Windows.Forms.ToolStripItemImageScaling with get, set
Public Property ImageScaling As ToolStripItemImageScaling
Valeur de propriété
Une des valeurs de ToolStripItemImageScaling.One of the ToolStripItemImageScaling values. La valeur par défaut est SizeToFit.The default is SizeToFit.
Exemples
L’exemple de code suivant montre comment Imagedéfinir, ImageScalinget ImageTransparentColor pour un ToolStripItem.The following code example demonstrates how to set the Image, ImageScaling, and ImageTransparentColor for a ToolStripItem. En outre, il montre comment définir et afficher une info-bulle personnalisée pour l’élément.In addition, it demonstrates how to set and show a custom ToolTip for the item.
ToolStripButton^ imageButton;
void InitializeImageButtonWithToolTip()
{
// Construct the button and set the image-related properties.
imageButton = gcnew ToolStripButton;
imageButton->Image =
gcnew Bitmap(Timer::typeid,"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);
}
// internal:
internal ToolStripButton imageButton;
private void InitializeImageButtonWithToolTip()
{
// Construct the button and set the image-related properties.
imageButton = new ToolStripButton();
imageButton.Image = new Bitmap(typeof(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);
}
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
Remarques
Les Imagepropriétés ImageAlign ,ImageKey,, etImageScaling se rapportent à différents aspects de la gestion d’images. ImageIndexThe Image, ImageAlign, ImageIndex, ImageKey, and ImageScaling properties pertain to various aspects of image handling. Utilisez des images ToolStrip dans les contrôles en définissant ces propriétés directement ou en définissant la propriété ImageList d’exécution uniquement.Use images in ToolStrip controls by setting these properties directly or by setting the run-time-only ImageList property.
La mise à l’échelle des images est déterminée par l’interaction ToolStrip des ToolStripItempropriétés dans et, comme suit:Image scaling is determined by the interaction of properties in both ToolStrip and ToolStripItem, as follows:
ImageScalingSizeest l’échelle de l’image finale, telle que déterminée par la combinaison du ImageScaling paramètre de l’image et du paramètre du AutoSize conteneur.ImageScalingSize is the scale of the final image as determined by the combination of the image's ImageScaling setting and the container's AutoSize setting.
Si AutoSize ToolStripItemImageScaling est
true
(valeur par défaut) et SizeToFita la valeur, aucune mise à l’échelle ToolStrip de l’image n’est effectuée et la taille est celle de l’élément le plus grand, ou une taille minimale prescrite.If AutoSize istrue
(the default) and ToolStripItemImageScaling is SizeToFit, no image scaling occurs, and the ToolStrip size is that of the largest item, or a prescribed minimum size.Si AutoSize est
false
et estToolStripItemImageScaling ToolStrip , ni l’image ni la mise à l’échelle ne se produisent. NoneIf AutoSize isfalse
and ToolStripItemImageScaling is None, neither image nor ToolStrip scaling occurs.