Xamarin中使用DatePickerDialog的相关问题
摘要:
在Xamarin中在使用Datepicker的时候,一般情况下只需要在对应的按钮或其他控件的点击事件中使用如下语句即可完成: 1 EditText etBirthday = FindViewById (Resource.Id.userBirthday); 2 etBirthday.Click += delegate(object sender, EventArgs e) { 3 new DatePickerDialog (this, OnDatePickerSelect, DateTime.Today.Year, DateTime.Today.Month - 1, DateTime.T... 阅读全文
posted @ 2013-08-12 00:23 宋海鹏 阅读(1774) 评论(0) 推荐(0) 编辑