c# 完全透明窗体显示完全不透明文字文字
我以前用GraphicsPath实现现在在试又不行了Graphics。DrawStringGraphics。FillPath以上2种方法都没用都随着窗体一起不见了...
我以前用GraphicsPath实现 现在在试又不行了
Graphics。DrawString
Graphics。FillPath
以上2种方法都没用 都随着窗体一起不见了 展开
Graphics。DrawString
Graphics。FillPath
以上2种方法都没用 都随着窗体一起不见了 展开
2013-07-12
展开全部
这么写就行了 public Form1()
{
InitializeComponent();
this.BackColor = Color.Fuchsia;
this.TransparencyKey = Color.Fuchsia;
}
Font font = new Font("微软雅黑", 20);
private void Form1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixel;
e.Graphics.DrawString("我是不透明的", font, Brushes.Red, PointF.Empty);
}
{
InitializeComponent();
this.BackColor = Color.Fuchsia;
this.TransparencyKey = Color.Fuchsia;
}
Font font = new Font("微软雅黑", 20);
private void Form1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixel;
e.Graphics.DrawString("我是不透明的", font, Brushes.Red, PointF.Empty);
}
2013-07-12
展开全部
2个窗体叠加最简单
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |