创建一个背景色渐变的WINFORM

这篇博客介绍了如何在.NET Compact Framework中创建一个具有渐变背景色且支持透明标签的WINFORM。开发者需要继承Form,重写OnPaintBackground()方法,并利用MSDN提供的GradientFill.Fill方法来实现背景渐变效果。此外,还需要引入一个Win32Helper类以辅助实现所需功能。
摘要由CSDN通过智能技术生成

你是否厌倦了灰灰的WINFORM呢,今天介绍一个为WINFORM填充渐变颜色的方法。参考了以下两篇文章

http://breathingtech.com/2009/creating-gradient-background-with-transparent-labels-in-net-compact-framework/

http://msdn.microsoft.com/en-us/library/ms229655(VS.80).aspx


新的WINFORM要继承Form,然后重写OnPaintBackground()方法

using System.Drawing;
using System.Windows.Forms;
 
namespace GradientTransparentTest
{
    public partial class GradientTransparentForm : Form
    {
        public GradientTransparentForm()
        {
            InitializeComponent();
        }
 
        // Paints the background of the form with a GradientFill pattern.
        protected override void OnPaintBackground(PaintEventArgs e)
        
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值