如下图,如何才能实现窗体颜色渐变?
实现窗体颜色渐变需要用到Color结构的FormArgb方法,该方法可以重载。
实现的主要代码如下
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 窗体背景颜色渐变
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
protected override void OnPaintBackground(PaintEventArgs e)
{
int intLocation, intHeight;//定义两个int型的变量intLocation、intHeight
intLocation = this.ClientRectangle.Location.Y;//为变量intLocation赋值
intHeight = this.ClientRectangle.Height / 200;//