建立字体形状窗体
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了建立字体形状窗体相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
重写窗体的OnPint方法 对窗体进行重绘 最后设置透明色
实习代码:
private void Form1_Load(object sender, EventArgs e) { bit = new Bitmap(Properties.Resources.poetry); bit.MakeTransparent(Color.Wheat); } protected override void OnPaint(PaintEventArgs e) { e.Graphics.DrawImage(bit,new Point(0,0)); }
以上是关于建立字体形状窗体的主要内容,如果未能解决你的问题,请参考以下文章
PB 怎么动态(用代码)改变数据窗口的属性(例如窗体的字体大小,字体颜色,背景颜色)