예제 #1
0
            internal SheetTab(ReoGridView rgView, Context ctx, IAttributeSet attrs)
                : base(ctx, attrs)
            {
                this.rgView = rgView;

                TextSize = 12f;

                SetBackgroundColor(Color.WhiteSmoke);
                SetTextColor(Color.DimGray);
            }
예제 #2
0
        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);
        }
예제 #3
0
            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);
            }
예제 #4
0
 public ReoGridViewAdapter(ReoGridView view)
 {
     this.view = view;
 }
예제 #5
0
 internal SheetTab(ReoGridView rgView, Context ctx)
     : this(rgView, ctx, null)
 {
 }
예제 #6
0
 public InnerView(ReoGridView rgView, Context ctx, IAttributeSet attrs)
     : base(ctx, attrs)
 {
     this.rgView = rgView;
 }