示例#1
0
 /// <summary>
 /// Callback used to notify the Row about exitting model tree.
 /// </summary>
 internal void OnAfterExitParentTree(TableRowGroup rowGroup)
 {
     if (rowGroup.Table != null)
     {
         Table.OnStructureChanged();
     }
 }
示例#2
0
 /// <summary>
 /// Callback used to notify the Row about entering model tree.
 /// </summary>
 internal void OnEnterParentTree()
 {
     if (Table != null)
     {
         Table.OnStructureChanged();
     }
 }