gpt4 book ai didi

c# 当子 pictureBox 更改 Image 时调整父控件的大小

转载 作者:太空宇宙 更新时间:2023-11-03 13:58:05 29 4
gpt4 key购买 nike

我有一个包含 PictureBox 和 Label 的 UserControl。控件在不同的事件(例如 onMouseEnter、OnMouseLeave)时在 PictureBox 中加载三个不同的图像。由于图像可以有不同的大小,我需要调整 pictureBox 的大小和控件本身。下面提供了控件的 OnPaint 事件,但这不起作用。

    protected override void OnPaint(PaintEventArgs pe)
{

if (pictureBox.Image != null)
{
this.Width = this.pictureBox.Image.Size.Width;
this.Height = this.pictureBox.Image.Size.Height;
CutRoundedRectangle2(pictureBox, cornerRadius);
}
else
{
Bitmap DrawArea = new Bitmap(pictureBox.Size.Width, pictureBox.Size.Height);
Graphics g = Graphics.FromImage(DrawArea);
Pen mypen = new Pen(Color.Black);
pictureBox.Image = DrawArea;
System.Drawing.Pen pen = new Pen(new SolidBrush(this.ForeColor));
g.DrawRectangle(pen, 0, 0, this.Width-1, this.Height-1);
g.Dispose();
}
this.labelText.ocation = new Point((this.pictureBox.Width - this.labelText.Width) / 2,
(this.pictureBox.Height - this.labelText.Height) / 2);
base.OnPaint(pe);
}

pictureBox SizeMode 在控件的构造函数中设置:

this.pictureBox.SizeMode = PictureBoxSizeMode.AutoSize;

最佳答案

我上次使用 WinForms 已经是很久以前的事了,但是......
我的第一个想法是:您是否尝试过将父控件的 AutoSize 属性的值设置为“true”并将 AutoSizeMode 设置为 GrowAndShrink 并调用父控件的 Refresh() 新图像加载到图片框时的方法?

关于c# 当子 pictureBox 更改 Image 时调整父控件的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11527680/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com