标签图像模式拉伸

时间:2015-05-01 14:02:20

标签: c# image winforms label

我写了这段代码来添加Labels

JArray a = JArray.Parse(temp);
Label[] labels = new Label[100];
foreach (JObject o in a.Children<JObject>())
{
    foreach (JProperty p in o.Properties())
    {
        string name = p.Name;
        string value = p.Value.ToString();
        if (name == "name")
        {
            labels[counter] = new Label();
            //Image i = Image.FromFile("item.jpg");
            labels[counter].Text = value;
            labels[counter].Image =Image.FromFile("item.jpg");
            //labels[counter].Image
            //labels[counter].BackColor = Color.Blue;
            labels[counter].TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            labels[counter].Top = height;      
            height += 50;
            Controls.Add(labels[counter]);
        }
    }
}

Image应延伸至Label尺寸。我怎么能这样做?

3 个答案:

答案 0 :(得分:7)

显示和操纵图像和文本的能力在Winforms控件中以相当狂野的方式展开。

  • Label无法延伸其Image
  • PictureBoxPanel可以,但他们不会显示Text
  • Button可以同时执行这两项操作,但无论您如何设置它,它都将始终为Button ..

因此,要获得组合,您需要 所有者 - 绘制一些内容:

  • DrawImage在重载中获得正确的图片大小,然后将Image添加到Label
  • DrawStringText放到Panel上,将其显示在图片旁边

你可以将两个控件与正确的能力结合起来:

您可以创建Panel并将其BackgroundImage设置为您的图片及其BackgroundImageLayout=Stretch。然后,您可以将Label及其文本集添加到Panel的控件集合中:

// preparation for testing:
Image image = Image.FromFile("D:\\stop32.png");
Size size = new Size(77, 77);

// create the combined control
// I assume your Label is already there
Panel pan = new Panel();
pan.Size = size;
// or, since the Label has the right size:
pan.Size = label.Size;  // use Clientsize, if borders are involved!
pan.BackgroundImage = image;
pan.BackgroundImageLayout = ImageLayout.Stretch;
label.Parent = pan;  // add the Label to the Panel
label.Location = Point.Empty;
label.Text = "TEXT";
label.BackColor = Color.Transparent;

// add to (e.g.) the form
pan.Parent = this;

根据需要设置边框..

还有一个选项:如果所有Images都应具有相同的尺寸,如果它是256x256像素或更少,您可以将它们添加到ImageList。这会以非常简单的方式将它们拉伸到ImageList.ImageSize,您可以将它们添加到Label ..

答案 1 :(得分:1)

非常简单:

VB

Label1.Image = New Bitmap(Image.FromFile("Screenshot.jpg"), Label1.Size)

C#

Label1.Image = new Bitmap(Image.FromFile("Screenshot.jpg"), Label1.Size);

答案 2 :(得分:0)

如果您使用的是WinForms,请尝试尝试以下内容:

labels[counter].Size = 
    new Size(labels[counter].Image.Width, labels[counter].Image.Height);