Created
May 27, 2017 12:57
-
-
Save dsibinski/930a05f6a51752d773651941b1dd5135 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void _btnSelectDate_Click(object sender, EventArgs e) | |
{ | |
new DatePickerFragment(delegate(DateTime time) | |
{ | |
_selectedDate = time; | |
_btnSelectDate.Text = _selectedDate.ToLongDateString(); | |
}) | |
.Show(FragmentManager, DatePickerFragment.TAG); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment