BuildGrid() public method

public BuildGrid ( ) : void
return void
Exemplo n.º 1
0
        private MonthGridView CreateNewGrid(DateTime date)
        {
            var grid = new MonthGridView(this, date, CurrentDate, CurrentDayBlockWidth);

            grid.BuildGrid();
            grid.Frame = new CGRect(0, 0, CurrentWidth, 400);
            return(grid);
        }
Exemplo n.º 2
0
        private MonthGridView CreateNewGrid(DateTime date)
        {
            var grid = new MonthGridView(this, date, CurrentDate);

            grid.BuildGrid();
            grid.Frame = new RectangleF(0, 0, 320, 400);
            return(grid);
        }
Exemplo n.º 3
0
 private MonthGridView CreateNewGrid(DateTime date)
 {
     var grid = new MonthGridView (this, date, CurrentDate);
     grid.BuildGrid ();
     grid.Frame = new RectangleF (0, 0, 320, 400);
     return grid;
 }
Exemplo n.º 4
0
 private MonthGridView CreateNewGrid(DateTime date, DateTime selectedDate)
 {
     var grid = new MonthGridView (this, date, selectedDate, _isPortrait);
     grid.BuildGrid ();
     grid.Frame = new RectangleF (0, 0, 320, 356);
     return grid;
 }
Exemplo n.º 5
0
 private MonthGridView CreateNewGrid(DateTime date)
 {
     var grid = new MonthGridView (this, date, CurrentDate, CurrentDayBlockWidth);
     grid.BuildGrid ();
     grid.Frame = new CGRect (0, 0, CurrentWidth, 400);
     return grid;
 }