建立字体形状窗体
2021-06-26 07:05
标签:graphic 设置 obj vat tar src class 重写 rop 实现效果: 知识运用: 重写窗体的OnPint方法 对窗体进行重绘 最后设置透明色 实习代码: 建立字体形状窗体 标签:graphic 设置 obj vat tar src class 重写 rop 原文地址:https://www.cnblogs.com/feiyucha/p/10111739.html 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));
}