本文整理汇总了C#中UITableView.Anchor方法的典型用法代码示例。如果您正苦于以下问题:C# UITableView.Anchor方法的具体用法?C# UITableView.Anchor怎么用?C# UITableView.Anchor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UITableView
的用法示例。
在下文中一共展示了UITableView.Anchor方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ViewDidLoad
public override void ViewDidLoad()
{
base.ViewDidLoad();
View.BackgroundColor = UIColor.Green;
Title = "Margin Test";
_top = new UITableView(new CGRect(), UITableViewStyle.Plain);
View.Add(_top);
_bottom = new UITableView(new CGRect(), UITableViewStyle.Grouped);
View.Add(_bottom);
// _top.SeparatorStyle = _bottom.SeparatorStyle = UITableViewCellSeparatorStyle.None;
_top.ZeroMargins();
_bottom.ZeroMargins();
if ( IosVersion.Major >= 9 )
{
_top.CellLayoutMarginsFollowReadableWidth = _bottom.CellLayoutMarginsFollowReadableWidth = false;
}
_top
.Anchor(NSLayoutAttribute.Top, View, NSLayoutAttribute.Top)
.Anchor(NSLayoutAttribute.Left, View, NSLayoutAttribute.Left)
.Anchor(NSLayoutAttribute.Right, View, NSLayoutAttribute.Right)
.Anchor(NSLayoutAttribute.Bottom, View, NSLayoutAttribute.CenterY);
_bottom
.Anchor(NSLayoutAttribute.Top, _top, NSLayoutAttribute.Bottom)
.Anchor(NSLayoutAttribute.Left, View, NSLayoutAttribute.Left)
.Anchor(NSLayoutAttribute.Right, View, NSLayoutAttribute.Right)
.Anchor(NSLayoutAttribute.Bottom, View, NSLayoutAttribute.Bottom);
var source = new TableSource();
Section section;
// -----------------------
section = new Section();
section.Header = "Default cell";
section.Footer = "---";
var titleCellFactory = new TitleCellFactory();
section.Cells.Add(
new CellModel<ItemWithTitle>(
titleCellFactory,
new ItemWithTitle { Title = "foo" }
));
section.Cells.Add(
new CellModel<ItemWithTitle>(
titleCellFactory,
new ItemWithTitle { Title = "bar" }
));
source.Sections.Add(section);
// -----------------------
_top.Source = source;
_bottom.Source = source;
}