Files
lserp_cs_6.0/插件库/Lskj.Main4/Control/SimpleControl.cs
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

36 lines
722 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Lskj.Main4.Control
{
public partial class SimpleControl : UserControl
{
public SimpleControl()
{
InitializeComponent();
}
public PictureBox PicBox
{
get { return this.picBox; }
}
public Label Label
{
get { return this.label; }
}
public CornerLab CornerLab
{
get { return this.cornerLab; }
}
public bool IsNextLine
{
get; set;
}
}
}