-
Notifications
You must be signed in to change notification settings - Fork 18
Home
Christophe Peugnet edited this page Mar 12, 2022
·
8 revisions
@using BlazorCalendar.Models
<AnnualCalendar FirstDate="today" Months="months" TasksList="TasksList.ToArray()" />
@code{
private DateTime today = DateTime.Today;
private int months = 12;
private List<Tasks> TasksList;
protected override void OnInitialized()
{
TasksList = new()
{
new Tasks { ID = 1, DateStart = today.AddDays(8), DateEnd = today.AddDays(8), Code = "CP", Color = "#19C319", Caption = "Lorem ipsum dolor sit amet" },
new Tasks { ID = 2, DateStart = today.AddDays(50), DateEnd = today.AddDays(52), Code = "DEV", Color = "#FFD800", Comment="on Teams template", Caption = "Fusce quis purus eu ante" },
new Tasks { ID = 3, DateStart = today.AddDays(62), DateEnd = today.AddDays(62), Code = "DEV", Color = "#FFD800" },`
new Tasks { ID = 4, DateStart = today.AddDays(62), DateEnd = today.AddDays(62), Code = "FORM", Color = "#FFC3FF", Caption = "Ut sit amet turpis eget" } ,
new Tasks { ID = 5, DateStart = today.AddDays(73).AddHours(8), DateEnd = today.AddDays(73).AddHours(9), Code = "MEETING", Color = "#2DD7D7", Comment="Julien's test" }
};
}
}