private void Button_Click(object sender, RoutedEventArgs e) { Canvas.SetTop(Elevador, 444); Edificio = new Edificio(3, 8); this.DataContext = Edificio; Edificio.ActualizarPersonasEsperando(); timer.Start(); }
public MainWindow() { InitializeComponent(); Edificio = new Edificio(3, 8); this.DataContext = Edificio; Edificio.ActualizarPersonasEsperando(); timer = new System.Windows.Threading.DispatcherTimer(); timer.Tick += Timer_Tick; timer.Interval = new TimeSpan(0, 0, 5); timer.Start(); }