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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using FLY.ControlLibrary;
using FLY.OBJComponents.Client;
using FLY.OBJComponents.IService;
using FLY.Weight.Client;
using FLY.Weight.Common;
using FLY.Weight.IService;
using FLY.Weight.Server.Model;
using System;
using System.Collections.Generic;
using System.ComponentModel;
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 Unity;
namespace FLY.Weight.UI.Client
{
/// <summary>
/// Window_RatioSet.xaml 的交互逻辑
/// </summary>
public partial class WdIngredient : WindowBigClose
{
IUnityContainer container;
IWeightSystemService weightSystemService;
WeighterC weight;
SetPLCUpdatePlan setPlan;
public WdIngredient()
{
InitializeComponent();
}
[InjectionMethod]
public void Init(
IUnityContainer container,
WeighterC weight,
IWeightSystemService weightSystemService)
{
this.container = container;
this.weightSystemService = weightSystemService;
this.weight = weight;
this.grid_weighter.DataContext = weight;
List<string> props = new List<string>();
props.Add("MixSet");
props.Add("MixBucketWeight");
props.Add("CumulativeProduction");
for (int j = 0; j < weight.BinCnt; j++)
{
int no = j + 1;
props.Add("MixLight_" + no);
//props.Add("MixPSet_" + no);
//props.Add("MixPDisp_" + no);
props.Add("MixCumPercent_" + no);
//props.Add("MixSet_" + no);
//props.Add("MixDisp_" + no);
props.Add("MixCum_" + no);
}
setPlan = new SetPLCUpdatePlan(
this.weightSystemService.PLCos,
weight,
props);
}
private void button_clear_Click(object sender, RoutedEventArgs e)
{
this.weight.ClearProduction = true;
}
private void button_mix_Click(object sender, RoutedEventArgs e)
{
this.Close();
WeighterC w = weight;
PgMixTable p = new PgMixTable();
container.BuildUp(p,
new Unity.Resolution.ParameterOverride("w", w));
MultiLayout.FlyLayoutManager.NavigationService.Navigate(p);
}
private void button_rollmix_Click(object sender, RoutedEventArgs e)
{
this.Close();
WeighterC w = weight;
PgRollMixTable p = new PgRollMixTable();
container.BuildUp(p,
new Unity.Resolution.ParameterOverride("w", w));
MultiLayout.FlyLayoutManager.NavigationService.Navigate(p);
}
private void WindowBigClose_Unloaded(object sender, RoutedEventArgs e)
{
setPlan.Dispose();
}
}
}