1

好的,这就是问题所在:在 C# 表单中,我创建了一个新的私有 void:

private void NewBtn(string Name, int x, int y)

其目的是创建一个模仿按钮行为的图片框(不要问为什么,我只是喜欢使事情复杂化)并且可以根据需要多次调用。

Font btnFont = new Font("Tahoma", 16);
PictureBox S = new PictureBox();
S.Location = new System.Drawing.Point(x, y);
S.Paint += new PaintEventHandler((sender, e) =>
{
    e.Graphics.TextRenderingHint = 
        System.Drawing.Text.TextRenderingHint.AntiAlias;
    e.Graphics.DrawString(Name, btnFont, Brushes.Black, 0, 0);
});
Controls.Add(S);

现在,我担心 Paint/Graphics 的一部分(忽略其余的代码,我只给出了其中的一部分)。当我称它为“NewBtn(Name,x,y)”时,我想将我写为“Name”的文本居中。那么,我应该写什么

e.Graphics.DrawString(Name, btnFont, Brushes.Black, ThisX???, 0);

建议?

4

2 回答 2

4
var size = g.MeasureString(Name, btnFont);

e.Graphics.DrawString(Name, btnFont, Brushes.Black,
                      (S.Width - size.Width) / 2,
                      (S.Height - size.Height) / 2));

考虑到特定按钮/图片框的字体和文本不会改变,您可以通过仅测量一次字符串来改进这一点。

而且我还建议检查是否S.Size比宽/高size并处理它,因此图形不会尝试从负坐标开始绘制字符串。

于 2012-05-05T09:10:25.043 回答
2

Try using the Graphics.DrawString methods that uses the String.Drawing.StringFormat Option

StringFormat drawFormat = new StringFormat();
drawFormat.Alignment= StringAlignment.Center;
drawFormat.LineAlignment = StringAlignment.Center;

You have two options here the first to use coordinates.

e.Graphics.DrawString(("Name", new Font("Arial", 16), Brushes.Black, 10, 10, drawFormat);

the second is to create a rectange like this:

 e.Graphics.DrawString("Name", new Font("Arial", 16), Brushes.Black, new Rectangle(0,0,this.Width,this.Height), drawFormat);
于 2012-05-05T09:27:15.527 回答