Telerik设置高度单元xamarin iOS

时间:2018-04-27 10:30:42

标签: ios xamarin telerik

我在定义TKListView时如何设置单元格高度,我使用了这个:

var listView = new TKListView();
listView.RegisterClassForCell(new Class(typeof(MyCellView)), "cell");
listView.WeakDataSource = new ListViewDataSource(MyItems);
listView.AllowsCellReorder = true;
listView.Delegate = new MyListViewDelegate(this);

var listContainerView = new UIView();
UIViewStyles.ApplyGroupBox(listContainerView);
listContainerView.AddSubview(listView);

是在TKListView的构造函数中传递的任何属性?我试过这样的事情:

var listView = new TKListView( RowHeight = 100);

但没有工作

1 个答案:

答案 0 :(得分:0)

我必须使用它:

var listView = new TKListView();
var layout = listView.Layout as TKListViewLinearLayout;
layout.ItemSize = new CGSize(View.Bounds.Width, 70);
....

希望它能帮助未来的人