コード例 #1
0
        /// <summary>
        /// A button click event that send the information from the food button
        /// to the MenuSelectionEvent which will be accessed by the FoodButtonClickEvent
        /// in the Order class
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        public void ComboSelection(object sender, RoutedEventArgs e)
        {
            GetOrderObject();

            currentOrder.SwitchComboSelectionScreen();

            //FoodSelected?.Invoke(this, new MenuSelectionEvent() { fooditem = side });
        }