コード例 #1
0
        public override Appointment Copy()
        {
            CustomAppointment newApp = new CustomAppointment();

            newApp.CopyFrom(this);
            return(newApp);
        }
コード例 #2
0
 public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
 {
     this.appointment = (CustomAppointment)value;
     return(this.SaveAppointmentCommand);
 }