当前位置: 首页>>代码示例>>C#>>正文


C# UITableView.Anchor方法代码示例

本文整理汇总了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;
        }
开发者ID:sebbarg,项目名称:yagnix,代码行数:67,代码来源:TableMarginController.cs


注:本文中的UITableView.Anchor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。