4

我正在尝试在我的图片框上写一些文本,所以我认为最简单和最好的做法是在其上绘制标签。这就是我所做的:

PB = new PictureBox();
PB.Image = Properties.Resources.Image; 
PB.BackColor = Color.Transparent;
PB.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
PB.Size = new System.Drawing.Size(120, 30);
PB.Location = new System.Drawing.Point(100, 100);
lblPB.Parent = PB;
lblPB.BackColor = Color.Transparent;
lblPB.Text = "Text";
Controls.AddRange(new System.Windows.Forms.Control[] { this.PB });

我得到没有图片框的空白页。我究竟做错了什么?

4

5 回答 5

18

While all these answers work, you should consider opting for a cleaner solution. You can instead use the picturebox's Paint event:

PB = new PictureBox();
PB.Paint += new PaintEventHandler((sender, e) =>
{
    e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
    e.Graphics.DrawString("Text", Font, Brushes.Black, 0, 0);
});
//... rest of your code

Edit To draw the text centered:

PB.Paint += new PaintEventHandler((sender, e) =>
{
    e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;

    string text = "Text";

    SizeF textSize = e.Graphics.MeasureString(text, Font);
    PointF locationToDraw = new PointF();
    locationToDraw.X = (PB.Width / 2) - (textSize.Width / 2);
    locationToDraw.Y = (PB.Height / 2) - (textSize.Height / 2);

    e.Graphics.DrawString(text, Font, Brushes.Black, locationToDraw);
});
于 2012-05-01T16:53:43.170 回答
7

代替

lblPB.Parent = PB;

PB.Controls.Add(lblPB);
于 2012-05-01T16:39:37.343 回答
3

我试过这个。(不使用图片框)

  1. 首先使用“面板”控件
  2. 设置面板的 BackgroundImage & BackgroundImageLayout (Stretch)
  3. 在面板内添加标签

就这样

于 2016-04-22T01:41:32.253 回答
2

您必须将控件添加到PictureBox. 所以:

PB.Controls.Add(lblPB):

编辑:

我得到没有图片框的空白页。

您没有看到图片框,因为它具有与表单相同的背景颜色。所以尝试设置 BorderStyle 和 BackColor。另一个错误是您可能没有设置标签的位置。所以:

PB.BorderStyle = BorderStyle.FixedSingle;
PB.BackColor = Color.White;
lblPB.Location = new Point(0,0);
于 2012-05-01T16:40:47.423 回答
0

还有另一种方法。这很简单,但可能不是最好的。(我是初学者,所以我喜欢简单的东西)

如果我正确理解了您的问题,您想将标签放在图片框的上方/顶部。以下代码行将执行此操作。

myLabelsName.BringToFront();

现在,您的问题已经得到解答,但也许这可以帮助其他人。

于 2013-02-22T17:56:35.997 回答