예제 #1
0
파일: TableRow.cs 프로젝트: beda2280/wpf-1
 /// <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
파일: TableRow.cs 프로젝트: beda2280/wpf-1
 /// <summary>
 /// Callback used to notify the Row about entering model tree.
 /// </summary>
 internal void OnEnterParentTree()
 {
     if (Table != null)
     {
         Table.OnStructureChanged();
     }
 }