public FrmTourPaymentEditor(TourPayment payment)
            : this()
        {
            this.editPayment = payment;
            this.editPayment.CopyTo(this.payment);

            BindControls();

            this.mpkPaymentAmount.Value.Currency = this.payment.Amount.Currency;
            this.mpkPaymentAmount.ValueEditor    = Convert.ToString(this.payment.Amount.Value);
            //this.mpkPaymentAmount.Value.PropertyChanged
        }
 public FrmTourPaymentEditor()
 {
     InitializeComponent();
     CreateControls();
     this.payment = new TourPayment();
 }