コード例 #1
0
 public SignificanceUC()
 {
     InitializeComponent();
     Table1           = new TableUC();
     cpTable1.Content = Table1;
     Table2           = new TableUC();
     cpTable2.Content = Table2;
 }
コード例 #2
0
ファイル: RegressionUC.xaml.cs プロジェクト: leoonsy/MSOsu
 public RegressionUC(MainWindowVM vm)
 {
     InitializeComponent();
     CoeffTable           = new TableUC();
     ErrorTable           = new TableUC();
     cpCoeffTable.Content = CoeffTable;
     cpErrorTable.Content = ErrorTable;
     mainVM      = vm;
     DataContext = mainVM;
     InitializeMyBindings();
 }
コード例 #3
0
ファイル: DataTableUC.xaml.cs プロジェクト: leoonsy/MSOsu
 public DataTableUC()
 {
     InitializeComponent();
     Table           = new TableUC();
     cpTable.Content = Table;
 }