예제 #1
0
파일: iPadView.cs 프로젝트: Clancey/Grapher
 public iPadView(iPadViewController parent)
 {
     graphVc = new GraphViewController();
     tableVc = new TableViewController();
     parent.AddChildViewController(graphVc);
     parent.AddChildViewController(tableVc);
     this.AddSubview(graphVc.View);
     this.AddSubview(tableVc.View);
 }
예제 #2
0
 public iPadView(iPadViewController parent)
 {
     graphVc = new GraphViewController();
     tableVc = new TableViewController();
     parent.AddChildViewController(graphVc);
     parent.AddChildViewController(tableVc);
     this.AddSubview(graphVc.View);
     this.AddSubview(tableVc.View);
 }