26 lines
567 B
C#
26 lines
567 B
C#
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 Lskj.SweepCode.Control
|
|
{
|
|
public partial class SweepButton : UserControl
|
|
{
|
|
public SweepButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
/// <summary>
|
|
/// 标题对象
|
|
/// </summary>
|
|
/// <value>The title label object.</value>
|
|
public Label TitleLabelObj { get { return btn_title; } }
|
|
|
|
}
|
|
}
|