2

PictureBoxとLabelを含むUserControlがあります。コントロールは、異なるイベント(たとえば、onMouseEnter、OnMouseLeave)でPictureBoxに3つの異なる画像をロードします。画像のサイズは異なる可能性があるため、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;
4

2 に答える 2

1

前回WinFormsを使用したのはかなり前のことですが、
最初に考えたのは、親コントロールのAutoSizeプロパティの値を「true」に設定AutoSizeModeし、新しい画像が画像ボックスに読み込まれたときにGrowAndShrink親コントロールのメソッドを呼び出してみたことです。 Refresh()

于 2012-07-17T17:33:20.700 に答える
0

@Alexey、pictureBoxサイズ変更イベントが役に立ちました!

    private void pictureBox_Resize(object sender, EventArgs e)
    {
        this.Width = this.pictureBox.Image.Size.Width;
        this.Height = this.pictureBox.Image.Size.Height;
    }
于 2012-07-18T12:22:29.547 に答える