コード例 #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();
     }
 }