Exemplo n.º 1
0
 public void ShowFaultTrucks()
 {
     _modelObject = new TrucksPageViewModel();
     DataContext  = _modelObject;
     _modelObject.ItemsFaultTrucks();
 }
Exemplo n.º 2
0
 public void TrucksPageLoad()
 {
     DataContext = new TrucksPageViewModel();
 }
Exemplo n.º 3
0
 public void ShowWaitingTrucks()
 {
     _modelObject = new TrucksPageViewModel();
     DataContext  = _modelObject;
     _modelObject.ItemsWaitingTrucks();
 }
Exemplo n.º 4
0
 public TrucksPage()
 {
     InitializeComponent();
     DataContext = new TrucksPageViewModel();
 }