Commit 5776a385 authored by 潘栩锋's avatar 潘栩锋 🚴

添加 WindowSize,LCUS 设置

parent 2422f671
...@@ -70,18 +70,31 @@ namespace ThickTcpUiInWindow ...@@ -70,18 +70,31 @@ namespace ThickTcpUiInWindow
/// </summary> /// </summary>
public string WarningTipPath { get; set; } public string WarningTipPath { get; set; }
/// <summary> /// <summary>
/// 使用虚拟键盘 /// 使用虚拟键盘
/// </summary> /// </summary>
public virtual bool HaveOSK { get; set; } public bool HaveOSK { get; set; }
/// <summary> /// <summary>
/// 虚拟键盘支持鼠标 /// 虚拟键盘支持鼠标
/// </summary> /// </summary>
public virtual bool HaveOSK_mouse { get; set; } public bool HaveOSK_mouse { get; set; }
/// <summary>
/// list窗口大小
/// </summary>
public int WindowSize { get; set; } = 30;
/// <summary>
/// USB 继电器 串口地址
/// </summary>
public string LCUS1_PortName { get; set; } = "COM1";
/// <summary>
/// 使能USB 继电器
/// </summary>
public bool EnableLCUS1 { get; set; }
#endregion #endregion
/// <summary> /// <summary>
...@@ -137,7 +150,10 @@ namespace ThickTcpUiInWindow ...@@ -137,7 +150,10 @@ namespace ThickTcpUiInWindow
"Language", "Language",
"WarningTipPath", "WarningTipPath",
"HaveOSK", "HaveOSK",
"HaveOSK_mouse" "HaveOSK_mouse",
"WindowSize",
"LCUS1_PortName",
"EnableLCUS1"
}; };
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment