Example #1
0
 //-------------------------------------------------------------------
 public void MoveBottomTaxon(TaxonTreeNode _taxon)
 {
     if (_taxon == null)
     {
         return;
     }
     _taxon.MoveBottom();
     _taxon.Father.Expand();
     RefreshGraph();
 }