using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace FLY.Weight.UI.Client
{
    /// <summary>
    /// Page_Menu.xaml 的交互逻辑
    /// </summary>
    public partial class Page_Menu : Page
    {
        public Page_Menu()
        {
            InitializeComponent();
        }

        private void button_ingredient_Click(object sender, RoutedEventArgs e)
        {
            Page_Ingredient p = new Page_Ingredient();

            NavigationService.Navigate(p);
        }

        private void button_screw_Click(object sender, RoutedEventArgs e)
        {
            Page_Screw p = new Page_Screw();

            NavigationService.Navigate(p);
        }

        private void button_hopper_Click(object sender, RoutedEventArgs e)
        {
            Page_Hopper p = new Page_Hopper();
            NavigationService.Navigate(p);
        }

        private void button_error_Click(object sender, RoutedEventArgs e)
        {
            Page_ErrorTable p = new Page_ErrorTable();
            NavigationService.Navigate(p);
        }

        private void button_thickness_Click(object sender, RoutedEventArgs e)
        {
            Page_Thickness p = new Page_Thickness();
            NavigationService.Navigate(p);
        }
    }
}