You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.8 KiB
C#
56 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
using Mesnac.Action.Base;
|
|
using Mesnac.Action.ChemicalWeighing.LjMetage;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjElectrical
|
|
{
|
|
public class DownAction : ChemicalWeighingAction, IAction
|
|
{
|
|
|
|
|
|
public static event EventHandler OnHandler;
|
|
|
|
private DbMCControl _materialGridControl = null; //物料列表控件
|
|
private RuntimeParameter _runtime;
|
|
public void Run(RuntimeParameter runtime)
|
|
{
|
|
base.RunIni(runtime); //必须调用
|
|
this._runtime = runtime;
|
|
DbMCControl materialGridControl =
|
|
this.GetDbMCControlByKey(Mesnac.Basic.DataSourceFactory.MCDbType.Local, "ElectricalSetting")
|
|
.FirstOrDefault(); //获取物料数据控件
|
|
this._materialGridControl = materialGridControl;
|
|
|
|
|
|
if (MessageBox.Show("确定下发变频参数到PLC?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
|
|
{
|
|
DoWord();
|
|
};
|
|
|
|
}
|
|
|
|
private void DoWord()
|
|
{
|
|
DataGridView gridView = _materialGridControl.BaseControl as DataGridView;
|
|
var gridViewDataSource = gridView.DataSource as DataTable;
|
|
|
|
List<ElectricalView> lsView = new List<ElectricalView>();
|
|
|
|
var dataRowCollection = gridViewDataSource.Rows;
|
|
foreach (DataRow o in dataRowCollection)
|
|
{
|
|
ElectricalView view = new ElectricalView();
|
|
view.Id = (int)o["Id"];
|
|
view.Name = o["Name"].ToString();
|
|
view.Speed = Convert.ToSingle(o["Speed"]); ;
|
|
lsView.Add(view);
|
|
}
|
|
|
|
new ElectricalPlc().DownToPlc(lsView);
|
|
}
|
|
}
|
|
} |