示例#1
0
 public SignificanceUC()
 {
     InitializeComponent();
     Table1           = new TableUC();
     cpTable1.Content = Table1;
     Table2           = new TableUC();
     cpTable2.Content = Table2;
 }
示例#2
0
 public RegressionUC(MainWindowVM vm)
 {
     InitializeComponent();
     CoeffTable           = new TableUC();
     ErrorTable           = new TableUC();
     cpCoeffTable.Content = CoeffTable;
     cpErrorTable.Content = ErrorTable;
     mainVM      = vm;
     DataContext = mainVM;
     InitializeMyBindings();
 }
示例#3
0
 public DataTableUC()
 {
     InitializeComponent();
     Table           = new TableUC();
     cpTable.Content = Table;
 }