C2015-022 Separate Windows Upgrade – added logic to restore child tree nodes of a procedure set that was opened in a child window but then closed

C2015-022 Separate Windows Upgrade – added an event to allow us to update the bookmark list in child windows
This commit is contained in:
2018-03-12 14:35:07 +00:00
parent 60e9131698
commit e4866e4ecc
2 changed files with 42 additions and 7 deletions

View File

@@ -92,6 +92,18 @@ namespace VEPROMS.CSLA.Library
get { return _ChildrenLoaded; }
set { _ChildrenLoaded = value; }
}
protected bool _MovedToSeparateWindow = false; // C2015-022 tells us this tree node and childern are now in a child window (separate Window) - used on Parent window side for a folder context menu
public bool MovedToSeparateWindow
{
get { return _MovedToSeparateWindow; }
set { _MovedToSeparateWindow = value; }
}
protected bool _InChildWindow = false; // C2015-022 tells us this tree node is in the child window - used on child window side for folder context menu
public bool InChildWindow
{
get { return _InChildWindow; }
set { _InChildWindow = value; }
}
// Reset Node
//public void CloseNode()
//{