Ejemplo n.º 1
0
        //public Cocktail Cocktail { get; set; } = null;

        /// <summary>
        /// Initializes the singleton application object.  This is the first line of authored code
        /// executed, and as such is the logical equivalent of main() or WinMain().
        /// </summary>
        public App()
        {
            this.InitializeComponent();
            this.Suspending += OnSuspending;
            //Cocktail = new Cocktail();
            Cocktail.InitAsync();
        }
Ejemplo n.º 2
0
        private void NavView_Navigate(NavigationViewItem item)
        {
            switch (item.Name)
            {
            case "pageHome":
                ContentFrame.Navigate(typeof(HomePage), null, new SuppressNavigationTransitionInfo());
                break;

            case "eStop":
                Cocktail.DisableMotorDrivers();
                break;

            case "pageBottles":
                ContentFrame.Navigate(typeof(PumpsPage), null, new SuppressNavigationTransitionInfo());
                break;
            }
        }
Ejemplo n.º 3
0
 private async void Button_Click(object sender, RoutedEventArgs e)
 {
     Cocktail.ProgressBar = progress;
     await Cocktail.ExecuteRecipe(Item);
 }