SVN-Revision: r792
This commit is contained in:
cyf
2025-06-26 10:28:53 +00:00
parent 33dc032844
commit 3b5c814bef
4 changed files with 35 additions and 65 deletions
+2 -40
View File
@@ -106,6 +106,7 @@ namespace Lskj.Model
/// 是否阻止回车事件
/// </summary>
public bool IsExecute = false;
/// <summary>
/// 登录IP
@@ -405,43 +406,4 @@ namespace Lskj.Model
else
{
systemVersion = "非Windows NT系列操作系统";
}
return systemVersion;
}
}
#endregion
/// <summary>
/// 使用winfrom自带浏览器
/// </summary>
public bool PrimitiveBrowser;
/// <summary>
/// 当前程序使用的语言
/// </summary>
public string LanguageName;
/// <summary>
/// 是否改变存储过程参数类型(越南语要用Nvarchar)
/// </summary>
public bool ChangeParameterType
{
get
{
if (!string.IsNullOrWhiteSpace(this.LanguageName))
{
return true;
}
return false;
}
}
/// <summary>
/// 页面水印层
/// </summary>
public Form WatermarkForm;
}
}