Refactoring: Rename class
This commit is contained in:
Родитель
9541fe5c9c
Коммит
90ad5b04e2
|
@ -1,9 +1,9 @@
|
|||
using System;
|
||||
namespace com.xamarin.recipes.compositecontrol
|
||||
{
|
||||
public class DatePickerChangedArgs : EventArgs
|
||||
public class DatePickerTextViewChangedArgs : EventArgs
|
||||
{
|
||||
public DatePickerChangedArgs(DateTime date)
|
||||
public DatePickerTextViewChangedArgs(DateTime date)
|
||||
{
|
||||
this.Date = date;
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ namespace com.xamarin.recipes.compositecontrol
|
|||
|
||||
}
|
||||
|
||||
void DatePicker_DateChanged(object sender, DatePickerChangedArgs e)
|
||||
void DatePicker_DateChanged(object sender, DatePickerTextViewChangedArgs e)
|
||||
{
|
||||
Log.Debug("MainActivity", "The date changed to " + e.Date);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче