1、实现切换开关自定义控件
(1)、设置初始化;
(2)、扩展自定义属性;
(3)、控件重绘;
(4)、定义事件。
2、自定义控件代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace CustomLib
{//指定默认事件[DefaultEvent("CheckedChanged")]public class Switch:Control{/// <summary>/// 构造函数/// </summary>public Switch() { SetStyle(ControlStyles.UserPaint, true);SetStyle(ControlStyles.AllPaintingInWmPaint, true);SetStyle(ControlStyles.OptimizedDoubleBuffer, true);SetStyle(ControlStyles.ResizeRedraw, true);SetStyle(ControlStyles.Selectable, true);SetStyle(ControlStyles.SupportsTransparentBackColor, true);this.Size = new Size(80, 30);this.Click += Switch_Click;}//事件public event EventHandler CheckedChanged;/// <summary>/// 点击事件处理/// </summary>/// <param name="sender"></param>/// <param name="e"></param>private void Switch_Click(object sender, EventArgs e){CheckedChanged?.Invoke(this, new EventArgs