Esempio n. 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);
        }
Esempio n. 2
0
 public DescriptionView(BaseCellView baseView, AContext context) : base(baseView, context)
 {
 }
Esempio n. 3
0
 public HintView(BaseCellView baseView, Context context) : base(baseView, context)
 {
 }
Esempio n. 4
0
 public ValueView(BaseCellView baseView, Context context) : base(baseView, context) => Init();
Esempio n. 5
0
 public void SetCell(BaseCellView cell)
 {
     _Cell = cell ?? throw new NullReferenceException(nameof(cell));
 }
Esempio n. 6
0
 public TitleView(BaseCellView baseView, Context context) : base(baseView, context)
 {
 }