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:
@@ -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()
|
||||
//{
|
||||
|
Reference in New Issue
Block a user