StationV.xaml.cs
2.09 KB
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
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 HHWCS.Model;
namespace HHWCSHost.Controls
{
/// <summary>
/// StationV.xaml 的交互逻辑
/// </summary>
public partial class StationV : UserControl
{
/// <summary>
/// 标识控件名称
/// </summary>
public string ControlName { get; set; }
public StationV()
{
InitializeComponent();
}
/// <summary>
/// 设置控件属性
/// </summary>
//public void SetProp(string to,string palletCode,int flag)
public void SetProp(List<DeviceAddressEntity> addresses)
{
int flag = 0;
string palletCode = addresses.Find(t => t.DevicePropCode == "PalletBarcode").value;
string to = addresses.Find(t => t.DevicePropCode == "PalletDestinationAddress").value;
string runningStatus = addresses.Find(t => t.DevicePropCode == "RunningStatus").value;
string palletExist = addresses.Find(t => t.DevicePropCode == "PalletExist").value;
lab_pallet.Content = palletCode;
lab_To.Content = to;
if (runningStatus == "False")
{
flag = 2;
}else if (palletExist == "True")
{
flag = 1;
}
switch (flag)
{
case 0:
r_status.Fill = null;
break;
case 1:
r_status.Fill = Brushes.Green;
break;
case 2:
r_status.Fill = Brushes.Red;
break;
default:
r_status.Fill = null;
break;
}
}
}
}