Skip to content

Commit 48ca81c

Browse files
committed
update images
1 parent babb8f6 commit 48ca81c

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

Example/CalendarDemo/CalendarDemo/App.cs

+13-14
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ public App()
1515
{
1616
calendar = new Calendar
1717
{
18-
//MaxDate = DateTime.Now.AddDays(30),
19-
//MinDate = DateTime.Now.AddDays(-1),
18+
MaxDate = DateTime.Now.AddDays(30),
19+
MinDate = DateTime.Now.AddDays(-1),
2020
//DisableDatesLimitToMaxMinRange = true,
2121
MultiSelectDates = false,
2222
DisableAllDates = false,
2323
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,
2929
ShowNumOfMonths = 1,
3030
EnableTitleMonthYearView = true,
3131
WeekdaysTextColor = Color.Teal,
@@ -56,7 +56,6 @@ public App()
5656
}
5757
}
5858
};
59-
6059
/*
6160
var white_row = new Pattern { WidthPercent = 1f, HightPercent = 0.04f, Color = Color.Transparent };
6261
var white_col = new Pattern { WidthPercent = 0.04f, HightPercent = 1f, Color = Color.Transparent };
@@ -72,13 +71,13 @@ public App()
7271
{
7372
Pattern = new List<Pattern>
7473
{
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},
7675
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},
7877
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},
8079
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},
8281
8382
white_row,white_row,white_row,white_row,white_row,white_row,white_row,
8483
@@ -112,8 +111,8 @@ public App()
112111
}
113112
}
114113
}
115-
};
116-
*/
114+
};*/
115+
117116
calendar.DateClicked += (sender, e) => {
118117
System.Diagnostics.Debug.WriteLine( calendar.SelectedDates);
119118
};

XamForms.Controls.Calendar.Droid/CalendarButtonRenderer.cs

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ protected void ChangeBackgroundPattern()
109109
var bp = element.BackgroundPattern.Pattern[i];
110110
if (!string.IsNullOrEmpty(bp.Text))
111111
{
112-
Console.Out.WriteLine("Text:"+bp.Text);
113112
d.Add(new TextDrawable(bp.Color.ToAndroid()) { Pattern = bp });
114113
}
115114
else

XamForms.Controls.Calendar.iOS/CalendarButtonRenderer.cs

-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ protected void DrawText(CGContext g, Pattern p, CGRect r)
119119
{
120120
y = (r.Y + r.Height) - 2;
121121
}
122-
Console.Out.WriteLine(r);
123122
g.SaveState();
124123
g.TranslateCTM(0, Bounds.Height);
125124
g.ScaleCTM(1,-1);

images/BackgroundPatternDroid.png

9.78 KB
Loading

0 commit comments

Comments
 (0)