-
Hello, I need to know the date that the user has selected. <xc:CalendarView
x:Name="Calendar"
SelectionType="Single"
SelectionAction="Replace"
DateSelectionChanged="CalendarView_DateSelectionChanged" /> and my c#: private void CalendarView_DateSelectionChanged(object sender, EventArgs arg)
{
DisplayAlert("Alert", Calendar.SelectedDates.ToString(),"OK");
} and message me back:
Help Me!! |
Beta Was this translation helpful? Give feedback.
Answered by
jfranpino
Aug 4, 2022
Replies: 1 comment
-
I have solved it this: Thank You |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ME-MarvinE
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have solved it this:
Calendar.SelectedDates[0].Date.ToString();
Thank You