是否可以应用渐变来标记文字?
现在我正在接管控件OnPaint并绘制我想要的文本字符串;但是,这是具体的。我真的想要这样做,以便标签本身应用我想要的渐变颜色。因此,每个字符都会在文本发生变化时指定渐变。
因此,我将使用LinearGradientBrush代替使用ForeColor。我目前正在使用WinForms。
编辑1
这是我目前使用的代码。但是,这仅适用于所有字符的渐变。我想改变它,以便应用字符串中的每个字符。
// Draw the formatted text string to the DrawingContext of the control.
Font font = new Font("BankGothic Md BT", 48f, FontStyle.Bold);
LinearGradientBrush brush = new LinearGradientBrush(label1.Location, new Point(label1.Width, label1.Height), Color.Goldenrod, Color.Black);
e.Graphics.DrawString(label1.Text, font, brush, 0,0);
修改2
这就是我所做的。我只是扩展了Label类并继承了OnPaint。
public partial class LabelEx : Label {
public LabelEx() {
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs e) {
// Draw the formatted text string to the DrawingContext of the control.
//base.OnPaint(e);
Font font = new Font("Tahoma", 48f, FontStyle.Bold);
LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, Width, Height + 5), Color.Gold, Color.Black, LinearGradientMode.Vertical);
e.Graphics.DrawString(Text, font, brush, 0, 0);
}
}
这给了我一个漂亮的渐变文字标签。
谢谢!
答案 0 :(得分:1)
这就是我所做的。我只是扩展了Label类并继承了OnPaint。
public partial class LabelEx : Label {
public LabelEx() {
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs e) {
// Draw the formatted text string to the DrawingContext of the control.
//base.OnPaint(e);
Font font = new Font("Tahoma", 48f, FontStyle.Bold);
LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, Width, Height + 5), Color.Gold, Color.Black, LinearGradientMode.Vertical);
e.Graphics.DrawString(Text, font, brush, 0, 0);
}
}