public EditPage2(core2.Project project)
 {
     InitializeComponent();
     this.project = project;
     //SetTable("one");
     loadSideButtons();
 }
 public ViewModel(core2.Project project, core2.Table table, double basePercent, ItemCollection display)
 {
     this.table        = table;
     this.project      = project;
     this._basePercent = basePercent;
     nodes             = new List <ViewModelTreeNode>();
     this.displayNodes = display;
 }