영문화완료
This commit is contained in:
@@ -12,13 +12,13 @@ namespace UIControl
|
||||
public partial class CtlCylinder : CtlBase
|
||||
{
|
||||
// string text_;
|
||||
Font font_ = new Font("맑은 고딕", 10);
|
||||
Font font_ = new Font("Malgun Gothic", 10);
|
||||
public enum eSensorType
|
||||
{
|
||||
단동 = 0,
|
||||
복동,
|
||||
SingleAction = 0,
|
||||
DoubleAction,
|
||||
}
|
||||
private eSensorType _arsensortype = eSensorType.단동;
|
||||
private eSensorType _arsensortype = eSensorType.SingleAction;
|
||||
public eSensorType arSensorType
|
||||
{
|
||||
get
|
||||
@@ -111,7 +111,7 @@ namespace UIControl
|
||||
//둘다 켜져잇거나 거져잇다면 작동하지 않는다
|
||||
if (arInput1 != arInput2)
|
||||
{
|
||||
if (arSensorType == eSensorType.단동)
|
||||
if (arSensorType == eSensorType.SingleAction)
|
||||
{
|
||||
var ts = DateTime.Now - RunStartTimeMax;
|
||||
//단동은 1번 센서의 on/off 로 처리한다
|
||||
@@ -217,7 +217,7 @@ namespace UIControl
|
||||
pe.Graphics.FillRectangle(Brushes.Gray, rectp1);
|
||||
pe.Graphics.DrawRect(rectp1, Color.White);
|
||||
|
||||
if (arSensorType == eSensorType.복동)
|
||||
if (arSensorType == eSensorType.DoubleAction)
|
||||
{
|
||||
var rectp2 = new RectangleF(
|
||||
this.DisplayRectangle.Right - StSize - 3,
|
||||
|
||||
Reference in New Issue
Block a user