HandView.xaml.cs
942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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();
//}
}
}