コード例 #1
0
        //set up and display each view from a generic nib ColumnView
        //each control is accessed from its tag property
        //back ground image tag = 10
        //button tag = 96
        public UIView tableViewIndex(HorizontalTableView aTableView, int index)
        {
            var vw = this.timelineColumns [index];

            this.Add(vw);
            return(vw);
        }
コード例 #2
0
 // Width of each column in the scrollview
 public float columnWidthForTableView(HorizontalTableView tableView)
 {
     return(140.0f);
 }
コード例 #3
0
 //Total number of columns in the scrollview
 public int numberOfColumnsForTableView(HorizontalTableView tableView)
 {
     return(this.timelineColumns.Count);
 }
コード例 #4
0
ファイル: HorizontalTableView.cs プロジェクト: ruscal/myMood
 public ScrollViewDelegate(HorizontalTableView oParentController) : base()
 {
     this.oParentController = oParentController;
 }