internal SheetTab(ReoGridView rgView, Context ctx, IAttributeSet attrs) : base(ctx, attrs) { this.rgView = rgView; TextSize = 12f; SetBackgroundColor(Color.WhiteSmoke); SetTextColor(Color.DimGray); }
internal SheetTabView(ReoGridView rgView, Context ctx, IAttributeSet attrs) : base(ctx, attrs) { this.rgView = rgView; innerView = new InnerView(rgView, ctx, attrs); this.AddView(this.innerView); this.SetBackgroundColor(Color.WhiteSmoke); }
public WorksheetView(ReoGridView rgView, Context ctx, IAttributeSet attrs) : base(ctx, attrs) { this.rgView = rgView; this.timer = new Timer(Tick, null, Timeout.Infinite, Timeout.Infinite); this.Focusable = true; this.SetBackgroundColor(Color.White); }
public ReoGridViewAdapter(ReoGridView view) { this.view = view; }
internal SheetTab(ReoGridView rgView, Context ctx) : this(rgView, ctx, null) { }
public InnerView(ReoGridView rgView, Context ctx, IAttributeSet attrs) : base(ctx, attrs) { this.rgView = rgView; }