@@ -15,17 +15,17 @@ public App()
15
15
{
16
16
calendar = new Calendar
17
17
{
18
- // MaxDate = DateTime.Now.AddDays(30),
19
- // MinDate = DateTime.Now.AddDays(-1),
18
+ MaxDate = DateTime . Now . AddDays ( 30 ) ,
19
+ MinDate = DateTime . Now . AddDays ( - 1 ) ,
20
20
//DisableDatesLimitToMaxMinRange = true,
21
21
MultiSelectDates = false ,
22
22
DisableAllDates = false ,
23
23
WeekdaysShow = true ,
24
- ShowNumberOfWeek = false ,
25
- BorderWidth = 1 ,
26
- BorderColor = Color . Transparent ,
27
- OuterBorderWidth = 0 ,
28
- SelectedBorderWidth = 1 ,
24
+ ShowNumberOfWeek = true ,
25
+ // BorderWidth = 1,
26
+ // BorderColor = Color.Transparent,
27
+ // OuterBorderWidth = 0,
28
+ // SelectedBorderWidth = 1,
29
29
ShowNumOfMonths = 1 ,
30
30
EnableTitleMonthYearView = true ,
31
31
WeekdaysTextColor = Color . Teal ,
@@ -56,7 +56,6 @@ public App()
56
56
}
57
57
}
58
58
} ;
59
-
60
59
/*
61
60
var white_row = new Pattern { WidthPercent = 1f, HightPercent = 0.04f, Color = Color.Transparent };
62
61
var white_col = new Pattern { WidthPercent = 0.04f, HightPercent = 1f, Color = Color.Transparent };
@@ -72,13 +71,13 @@ public App()
72
71
{
73
72
Pattern = new List<Pattern>
74
73
{
75
- new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Red, Text = "X", TextColor=Color.White, TextSize=11},
74
+ new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Red, Text = "X", TextColor=Color.White, TextSize=11, TextAlign=TextAlign.Middle },
76
75
white_col,
77
- new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Gold, Text = "Y", TextColor=Color.White, TextSize=11},
76
+ new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Gold, Text = "Y", TextColor=Color.White, TextSize=11, TextAlign=TextAlign.Middle },
78
77
white_col,
79
- new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Green, Text = "Z", TextColor=Color.White, TextSize=11},
78
+ new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Green, Text = "Z", TextColor=Color.White, TextSize=11, TextAlign=TextAlign.Middle },
80
79
white_col,
81
- new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Purple,Text = "Q", TextColor=Color.White, TextSize=11},
80
+ new Pattern{ WidthPercent = 0.22f, HightPercent = 0.22f, Color = Color.Purple,Text = "Q", TextColor=Color.White, TextSize=11, TextAlign=TextAlign.Middle },
82
81
83
82
white_row,white_row,white_row,white_row,white_row,white_row,white_row,
84
83
@@ -112,8 +111,8 @@ public App()
112
111
}
113
112
}
114
113
}
115
- };
116
- */
114
+ };*/
115
+
117
116
calendar . DateClicked += ( sender , e ) => {
118
117
System . Diagnostics . Debug . WriteLine ( calendar . SelectedDates ) ;
119
118
} ;
0 commit comments