我正在尝试使用FillPath覆盖我自己的自定义控件中的标签的OnPaint方法。
以下是我的控件代码:
public partial class GlassLabel : Label
{
public GlassLabel()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Graphics g = this.CreateGraphics();
GraphicsPath path = new GraphicsPath();
SolidBrush br = new SolidBrush(Color.Black);
path.AddString("LLOOOOLL", new FontFamily("Microsoft Sans Serif"), (int)FontStyle.Regular, 12, new Point(55, 55), StringFormat.GenericDefault);
g.SmoothingMode = SmoothingMode.HighQuality;
g.FillPath(br, path);
}
}
当我运行它时,标签的文本是相同的,它不会用FillPath绘制。
我试图覆盖标签的原因是我想在Aero glass上使用它,这需要FillPath。如果我可以将图形(FillPath)转换为对象以便我可以附加事件,我也想了解相关信息。
感谢。
刚试过:
e.Graphics.SmoothingMode = SmoothingMode.HighQuality;
e.Graphics.FillPath(br, path);
没有用。
答案 0 :(得分:7)
不要创建新的Graphics对象,而是使用e.Graphics
参数中提供的PaintEventArgs
。
我不确定您使用GraphicsPath
尝试实现的目标。可能你只能使用TextRenderer
。
protected override void OnPaint(PaintEventArgs e)
{
TextRenderer.DrawText(e.Graphics, "LLOOOOLL", Font, ClientRectangle, ForeColor,
TextFormatFlags.Left | TextFormatFlags.VerticalCenter);
}
更新:
我将表单切换到Aero Glass并进行了一些测试。使用TextRenderer
和GraphicsPath
的两种方法都有效,但TextRenderer
的效果不佳,因为ClearType会在玻璃上产生伪影。
这些API声明是必需的
[StructLayout(LayoutKind.Sequential)]
public struct MARGINS
{
public int Left;
public int Right;
public int Top;
public int Bottom;
}
[DllImport("dwmapi.dll", PreserveSig = false)]
public static extern void DwmExtendFrameIntoClientArea (IntPtr hwnd,
ref MARGINS margins);
[DllImport("dwmapi.dll", PreserveSig = false)]
public static extern bool DwmIsCompositionEnabled();
在表单的构造函数中,我有这段代码
InitializeComponent();
if (DwmIsCompositionEnabled()) {
// Stretch the margins into the form for the glass effect.
MARGINS margins = new MARGINS();
margins.Top = 300;
DwmExtendFrameIntoClientArea(this.Handle, ref margins);
}
自定义Label
必须为黑色背景。黑色部分将显示为玻璃。它必须具有大约(125,70)的最小尺寸才能适合您的文本,因为您开始绘制(55,55)。 (您的标签是否太小?)您必须将AutoSize
更改为false
才能更改标签的大小。以下是自定义标签的代码
protected override void OnPaint(PaintEventArgs e)
{
GraphicsPath path = new GraphicsPath();
SolidBrush br = new SolidBrush(Color.FromArgb(1, 0, 0));
path.AddString("LLOOOOLL", Font.FontFamily, (int)Font.Style, Font.SizeInPoints,
new Point(55, 55), StringFormat.GenericDefault);
e.Graphics.SmoothingMode = SmoothingMode.HighQuality;
e.Graphics.FillPath(br, path);
}
有一些差异,它与您的代码相同。一个重要的区别是文字颜色必须与黑色不同;否则,它会显示为玻璃。我只是采用实际标签字体的字体属性。这样您就可以在属性窗口中更改其外观。
我在this article of TheCodeKing找到了玻璃效果的代码。
答案 1 :(得分:0)
使用单个cs文件,您可以创建自己的标签控件
using System;
using System.Windows.Forms;
namespace GujControls
{
public partial class LABEL_BIRTHDATE : Label
{
public LABEL_BIRTHDATE()
{
this.SuspendLayout();
this.Font = GujWords.gujfont;
this.Size = new System.Drawing.Size(70, 23);
this.ResumeLayout();
}
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
protected override void OnPaint(PaintEventArgs e)
{
TextRenderer.DrawText(e.Graphics, "NAME", Font, ClientRectangle, ForeColor, TextFormatFlags.Left | TextFormatFlags.VerticalCenter);
}
}
}