BaseCtls.cs
529 字节
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Asa.Face
{
public partial class BaseCtls : BaseCtl
{
public BaseCtls()
{
InitializeComponent();
}
private void BaseCtls_Paint(object sender, PaintEventArgs e)
{
e.Graphics.Clear(Common.BACK_COLOR); //背景
}
}
}