using System; namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Event arguments for event. /// public class DateChangedEventArgs : EventArgs { /// /// The date that was on the element at the time that the user selected it. /// public DateTime OldDate { get; private set; } /// /// The date that the user entered. /// public DateTime NewDate { get; private set; } /// /// Creates a new object that represents a change from to . /// /// Old date of . /// Current date of . public DateChangedEventArgs(DateTime oldDate, DateTime newDate) { this.OldDate = oldDate; this.NewDate = newDate; } } }