SVN r645
SVN-Revision: r645
This commit is contained in:
@@ -54,6 +54,7 @@ namespace Lskj.Control.Model
|
||||
private string _dllParam11;
|
||||
private string _dllParam12;
|
||||
private bool _isCopy;
|
||||
private bool _isModal;
|
||||
private bool _forbiddenDisplay;
|
||||
private bool _noonWindow;
|
||||
private bool _allowNullExec;
|
||||
@@ -95,6 +96,12 @@ namespace Lskj.Control.Model
|
||||
/// </summary>
|
||||
/// <value>The id.</value>
|
||||
public int Id { get { return _id; } }
|
||||
/// <summary>
|
||||
/// 当ActionType=2时,打开dll是否最大化
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [maximum window]; otherwise, <c>false</c>.</value>
|
||||
public bool IsModal { get { return _isModal; } }
|
||||
|
||||
/// <summary>
|
||||
/// 当ActionType=2时,打开dll是否最大化
|
||||
/// </summary>
|
||||
@@ -409,7 +416,8 @@ namespace Lskj.Control.Model
|
||||
if (item.Table.Columns.Contains("SynchronizationToolSQL"))
|
||||
this.SynchronizationToolSQL = item["SynchronizationToolSQL"] + "";
|
||||
this._icoName = item.Table.Columns.Contains("IcoName") && !string.IsNullOrEmpty(item["IcoName"] + "") ? item["IcoName"] + "" : "";
|
||||
|
||||
if (item.Table.Columns.Contains("isModal"))
|
||||
this._isModal = string.IsNullOrWhiteSpace(item["isModal"] + "") ? false : "1".Equals(item["isModal"] + "");
|
||||
if (item.Table.Columns.Contains("isCopy"))
|
||||
this._isCopy = string.IsNullOrWhiteSpace(item["isCopy"] + "") ? false : "1".Equals(item["isCopy"] + "");
|
||||
if (item.Table.Columns.Contains("PopupProgressBar"))
|
||||
|
||||
Reference in New Issue
Block a user