// ***********************************************************************
// Assembly : HZH_Controls
// Created : 08-08-2019
//
// ***********************************************************************
//
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
//
//
// Blog: https://www.cnblogs.com/bfyx
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
//
// If you use this code, please keep this note.
// ***********************************************************************
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace HZH_Controls.Controls
{
///
/// Class UCBtnFillet.
/// Implements the
///
///
[DefaultEvent("BtnClick")]
public partial class UCBtnFillet : UCControlBase
{
///
/// 按钮点击事件
///
[Description("按钮点击事件"), Category("自定义")]
public event EventHandler BtnClick;
///
/// 按钮图片
///
/// The BTN image.
[Description("按钮图片"), Category("自定义")]
public Image BtnImage
{
get
{
return lbl.Image;
}
set
{
lbl.Image = value;
}
}
///
/// 按钮文字
///
/// The BTN text.
[Description("按钮文字"), Category("自定义")]
public string BtnText
{
get { return lbl.Text; }
set
{
lbl.Text = value;
}
}
///
/// Initializes a new instance of the class.
///
public UCBtnFillet()
{
InitializeComponent();
}
///
/// Handles the MouseDown event of the lbl control.
///
/// The source of the event.
/// The instance containing the event data.
private void lbl_MouseDown(object sender, MouseEventArgs e)
{
if (BtnClick != null)
BtnClick(this, e);
}
}
}