Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created May 27, 2017 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/930a05f6a51752d773651941b1dd5135 to your computer and use it in GitHub Desktop.
Save dsibinski/930a05f6a51752d773651941b1dd5135 to your computer and use it in GitHub Desktop.
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