示例#1
0
        public static IconView Create(Android.Views.View view, BaseCellView cell, int id)
        {
            IconView result = view.FindViewById <IconView>(id) ?? throw new NullReferenceException(nameof(id));

            result.SetCell(cell);
            return(result);
        }
示例#2
0
 public DescriptionView(BaseCellView baseView, AContext context) : base(baseView, context)
 {
 }
示例#3
0
 public HintView(BaseCellView baseView, Context context) : base(baseView, context)
 {
 }
示例#4
0
 public ValueView(BaseCellView baseView, Context context) : base(baseView, context) => Init();
示例#5
0
 public void SetCell(BaseCellView cell)
 {
     _Cell = cell ?? throw new NullReferenceException(nameof(cell));
 }
示例#6
0
 public TitleView(BaseCellView baseView, Context context) : base(baseView, context)
 {
 }