Exemplo n.º 1
0
 public AddForm(ParamEventArgs e) : this()
 {
     TagTB.Text = e.Tag;
     StartingDatePicker.Value = e.DateDeb;
     EndingTimePicker.Value   = e.DateFin;
     DescriptionTB.Text       = e.Description;
 }
Exemplo n.º 2
0
 private void WhenNewTripIsCreated(object sender, ParamEventArgs e)
 {
     _unVoyage.Tag         = e.Tag;
     _unVoyage.DateDeb     = e.DateDeb;
     _unVoyage.DateFin     = e.DateFin;
     _unVoyage.Description = e.Description;
     TrajetTV.Nodes.Clear();
     routeOverlay.Clear();
 }