Esempio n. 1
0
        public static UITableViewCell ToTableViewCell(QView view)
        {
            var cellView = view.PlatformView;

            if (!(cellView is UITableViewCell))
            {
                return(new UITableViewCellAdapter(cellView));
            }
            else
            {
                return((UITableViewCell)cellView);
            }
        }
Esempio n. 2
0
        internal static UITableViewHeaderFooterView ToTableViewHeaderFooter(QView view)
        {
            var cellView = view.PlatformView;

            if (!(cellView is UITableViewHeaderFooterView))
            {
                return(new UITableViewHeaderFooterViewAdapter(cellView));
            }
            else
            {
                return((UITableViewHeaderFooterView)cellView);
            }
        }
Esempio n. 3
0
 public abstract void FillGroupView(int group, QView section);
Esempio n. 4
0
 public abstract void FillChildView(int group, int child, QView item);
Esempio n. 5
0
 public abstract void FillView(int pos, QView convertView);
Esempio n. 6
0
 public abstract void FillChildView(int groupPosition, int childPosition, QView item);
Esempio n. 7
0
 public UITableViewHeaderFooterViewAdapter(UIView cellView)
 {
     _view = new QView(cellView);
     AddSubview(cellView);
 }
Esempio n. 8
0
 public UITableViewCellAdapter(UIView cellView)
 {
     _view = new QView(cellView);
     ContentView.AddSubview(cellView);
     BackgroundColor = CellView.BackgroundColor;
 }