schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
using DataEntity;
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;
using XHandler.Class;
using XHandler.Class.DataEx;
using XImagingXhandler.XDAL;
 
namespace XHandler.View.MethodProperty
{
    /// <summary>
    /// EndProperty.xaml 的交互逻辑
    /// </summary>
    public partial class EndProperty : UserControl
    {
        public MethodEnd methodEnd { get; set; }
        public EndProperty()
        {
            InitializeComponent();
        }
 
        public EndProperty(MethodEx method)
        {
            InitializeComponent();
 
            methodEnd = new MethodEnd();
            methodEnd.isrun = "disable";
            methodEnd.status = (method.isEnabled == true ? "enable" : "disable");
            methodEnd.name = method.method_name;
            methodEnd.strIndex = method.strIndex;
            methodEnd.label = method.method_name;
            methodEnd.isGoHome = true;
            methodEnd.isTipsOff = true;
 
            this.DataContext = methodEnd;
            if(method.tag!=null)
            {
                methodEnd =(MethodEnd) method.tag;
            }
        }
 
        private void cbGoHome_Click(object sender, RoutedEventArgs e)
        {
            if(cbGoHome.IsChecked == true)
            {
                methodEnd.isGoHome = true;
            }
            else
            {
                methodEnd.isGoHome = false;
            }
        }
 
        private void cbTipsOff_Click(object sender, RoutedEventArgs e)
        {
            if (cbTipsOff.IsChecked == true)
            {
                methodEnd.isTipsOff = true;
            }
            else
            {
                methodEnd.isTipsOff = false;
            }
        }
 
        private void UserControl_Loaded(object sender, RoutedEventArgs e)
        {
            cbGoHome.IsChecked = methodEnd.isGoHome;
            cbTipsOff.IsChecked= methodEnd.isTipsOff;
        }
 
        private void tbxCommandLabel_TextChanged(object sender, TextChangedEventArgs e)
        {
            if (string.IsNullOrEmpty(tbxCommandLabel.Text))
            {
                clError.Text = "命令标签不能为空";
                return;
            }
            else
            {
                clError.Text = "";
            }
        }
    }
}