HandView.xaml.cs 942 Bytes

using HH_WCS_Standard.Page.HandView;
using System;
using System.Windows;
using System.Windows.Controls;

namespace HH_WCS_Standard
{
    /// <summary>
    /// HandView.xaml 的交互逻辑
    /// </summary>
    public partial class HandView
    {
        public HandView()
        {
            InitializeComponent();
        }

        private void btn_SrmTaskRevert_Click(object sender, RoutedEventArgs e)
        {
            Frame.Content = new HandSrmTaskRevert();
        }
        private void btn_HandDeviceTask_Click(object sender, RoutedEventArgs e)
        {
            Frame.Content = new HandDeviceTask();
        }
        private void btn_HandTask_Click(object sender, RoutedEventArgs e)
        {
            Frame.Content = new HandTask();
        }
        //private void btn_HandSetsWeight_Click(object sender, RoutedEventArgs e)
        //{
        //    Frame.Content = new WeightWarningSet();

        //}
    }
}