using FLY.OBJComponents.Client; using FLY.Weight2.Client; using FLY.Weight2.IService; 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 Unity; namespace FLY.Weight2.UI.Client { /// /// Page_Screw.xaml 的交互逻辑 /// public partial class PgScrew : Page { IWeightSystemService weightSystemService; List setPlan_items = new List(); public PgScrew() { InitializeComponent(); } [InjectionMethod] public void Init( IWeightSystemService weightSystemService) { this.weightSystemService = weightSystemService; root_grid.DataContext = this.weightSystemService; RebuildPlans(); if (weightSystemService is WeightSystemServiceClient) { (weightSystemService as WeightSystemServiceClient).ResetItemsEvent += MWeighterCsService_ResetItemsEvent; } } private void MWeighterCsService_ResetItemsEvent() { RebuildPlans(); } /// /// 由于数量改变,重新构造更新计划 /// void RebuildPlans() { foreach (SetPLCUpdatePlan plan in setPlan_items) plan.Dispose(); setPlan_items.Clear(); for (int i = 0; i < weightSystemService.Items.Count(); i++) { string objname = $"{nameof(IWeightSystemService.Items)}[{i}]"; setPlan_items.Add(new SetPLCUpdatePlan( weightSystemService.PLCos, objname, new string[] { nameof(Common.WeighterC.MaxFreq), nameof(Common.WeighterC.StableTime), nameof(Common.WeighterC.SampleTime), nameof(Common.WeighterC.ChargeTime), nameof(Common.WeighterC.FastStandard), nameof(Common.WeighterC.BinUpperLimit), nameof(Common.WeighterC.BinLowerLimit), nameof(Common.WeighterC.ScrewLowerLimit), nameof(Common.WeighterC.StableLv), nameof(Common.WeighterC.AdjustLv), nameof(Common.WeighterC.HighFactor), nameof(Common.WeighterC.LowFactor), nameof(Common.WeighterC.AdjustLimit), nameof(Common.WeighterC.Pc), nameof(Common.WeighterC.It), nameof(Common.WeighterC.Dg), nameof(Common.WeighterC.Dt), nameof(Common.WeighterC.Filter), nameof(Common.WeighterC.FastFreq), nameof(Common.WeighterC.FastTime), nameof(Common.WeighterC.Cal), nameof(Common.WeighterC.Tolerance), nameof(Common.WeighterC.PIDResult), nameof(Common.WeighterC.PIDAdjust) })); } } private void button_back_Click(object sender, RoutedEventArgs e) { NavigationService.GoBack(); } private void Page_Unloaded(object sender, RoutedEventArgs e) { foreach (var setPlan in setPlan_items) { setPlan.Dispose(); } } } }