mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 00:36:41 +08:00
39 lines
409 B
C#
39 lines
409 B
C#
using System.Drawing;
|
|
|
|
namespace HZH_Controls.Controls
|
|
{
|
|
public class AuxiliaryLable
|
|
{
|
|
public string Text
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public Brush TextBrush
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public Brush TextBack
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public float LocationX
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public AuxiliaryLable()
|
|
{
|
|
TextBrush = Brushes.Black;
|
|
TextBack = Brushes.Transparent;
|
|
LocationX = 0.5f;
|
|
}
|
|
}
|
|
}
|