private MonthGridView CreateNewGrid(DateTime date) { var grid = new MonthGridView(this, date, CurrentDate); grid.BuildGrid(); grid.Frame = new RectangleF(0, 0, 320, 400); return(grid); }
private MonthGridView CreateNewGrid(DateTime date) { var grid = new MonthGridView(this, date); grid.CurrentDate = CurrentDate; grid.BuildGrid(); grid.Frame = new RectangleF(0, 0, 320, this.Frame.Height - 16); return(grid); }
private MonthGridView CreateNewGrid(DateTime date){ var grid = new MonthGridView(this, date); grid.CurrentDate = CurrentDate; grid.BuildGrid(); grid.Frame = new RectangleF(0, 0, 320, this.Frame.Height-16); return grid; }
private MonthGridView CreateNewGrid(DateTime date) { var grid = new MonthGridView(this, date, CurrentDate); grid.BuildGrid(); grid.Frame = new RectangleF(0, 0, 320, 400); return grid; }
private MonthGridView CreateNewGrid(DateTime date) { var grid = new MonthGridView(this, date); grid.CurrentDate = CurrentDate; grid.BuildGrid(); grid.Frame = new RectangleF(0, 0, Container.Width, Container.Height); return grid; }