Ejemplo n.º 1
0
 private void DpkStartDate_Changed(object sender, EventArgs e)
 {
     if (StartDateChanged != null)
     {
         StartDateChanged.Invoke(this, EventArgs.Empty);
     }
 }
Ejemplo n.º 2
0
        protected virtual void OnStartDateChanged()
        {
            Binding.FireChange(new Expression <Func <DateRangePicker, object> >[] {
                (w => w.StartDate),
                (w => w.StartDateOrNull),
            });

            StartDateChanged?.Invoke(this, EventArgs.Empty);
        }
Ejemplo n.º 3
0
 protected virtual void OnStartDateChanged()
 {
     StartDateChanged?.Invoke(this, EventArgs.Empty);
 }
Ejemplo n.º 4
0
 private void StartPicker_ValueChanged(object sender, RoutedPropertyChangedEventArgs <object> e)
 {
     StartDateChanged?.Invoke(e);
 }