/// <summary>
 /// Load an empty tree structure to show the end user that there was a problem loading the tree.
 /// </summary>
 private void LoadNullTree(TreeRequestParams treeParams)
 {
     BaseTree nullTree = new NullTree(treeParams.Application);
     nullTree.SetTreeParameters(treeParams);
     nullTree.Render(ref xTree);
 }
Beispiel #2
0
 /// <summary>
 /// Load an empty tree structure to show the end user that there was a problem loading the tree.
 /// </summary>
 private void LoadNullTree()
 {
     BaseTree nullTree = new NullTree(m_treeParams.Application);
     nullTree.SetTreeParameters(m_treeParams);
     nullTree.Render(ref m_xTree);
 }