我想在我的按钮中有一个多行文本字符串,如下所示:
myButton.Text = "abc" + Environment.NewLine + "123";
是否可以单独设置每一行的样式?例如,我希望第一行粗体,第二行斜体?
如果这是不可能的,有人可以推荐一种替代方法来实现这一目标吗?
谢谢
要做到这一点可能需要做很多工作,但这是一个开始。
这将是继承的类:
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public class MyButton : Button
{
private Boolean _pressed = false;
protected override void OnPaint(PaintEventArgs pevent)
{
if (_pressed)
ControlPaint.DrawButton(pevent.Graphics, pevent.ClipRectangle, ButtonState.Pushed);
else
ControlPaint.DrawButton(pevent.Graphics, pevent.ClipRectangle, ButtonState.Normal);
pevent.Graphics.DrawString("Line 1", new System.Drawing.Font("Arial", 8.5f, System.Drawing.FontStyle.Regular), System.Drawing.Brushes.Black, new System.Drawing.PointF(2.0f, 2.0f));
pevent.Graphics.DrawString("Line 2", new System.Drawing.Font("Tahoma", 14.0f, System.Drawing.FontStyle.Bold), System.Drawing.Brushes.Red, new System.Drawing.PointF(2.0f, 17.0f));
}
protected override void OnMouseUp(MouseEventArgs mevent)
{
_pressed = false;
base.OnMouseUp(mevent);
}
protected override void OnMouseDown(MouseEventArgs mevent)
{
_pressed = true;
base.OnMouseDown(mevent);
}
}
}
您必须以编程方式将MyButton
对象添加到表单中,或者添加一个普通按钮并进入Form1.Designer.cs
并将其类型从 更改Button
为MyButton
。
请注意Text1 + Environment.NewLine + Text2
,我不是使用 ,而是通过精确定位进行绘制。这使您可以准确计算所需的位置。
您可以利用Graphics.MeasureString进一步帮助自己。这可以帮助您确定您绘制的字符串的确切大小,以了解它消耗了多少空间。
您还需要确保按钮始终足够大以正确显示您要显示的文本。也可以在覆盖中完成,或者只是在设计时将其设置为设置大小并使其适合文本。任何。