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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliverPressureSetting/PressureSettingButtonAction.cs

140 lines
3.8 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using DataBlockHelper.DBHelpers;
using DevExpress.Utils.Taskbar;
using ICSharpCode.Core;
using Mesnac.Action.Base;
using Mesnac.Action.ChemicalWeighing.LjDeliverPressureSetting.Entity;
using Mesnac.Controls.Default;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Mesnac.Action.ChemicalWeighing.LjDeliverPressureSetting
{
public class PressureSettingButtonAction : ChemicalWeighingAction, IAction
{
MCButtonEntity ButtonE = new MCButtonEntity();
MCTextboxEntity BoxE = new MCTextboxEntity();
SlioEntity slioEntity = new SlioEntity();
PipeEntity pipe = new PipeEntity();
SpeedEntity speed = new SpeedEntity();
List<Control> Controls;
public void Run(RuntimeParameter runtime)
{
base.RunIni(runtime);
Controls = GetAllControls();
SetAllControus();
ButtonAction(runtime);
}
public void SetAllControus()
{
ControlsHelper.ControlImport<MCButton>(ButtonE, Controls);
ControlsHelper.ControlImport<MCTextBox>(BoxE, Controls);
ControlsHelper.ControlImport<MCTextBox>(slioEntity, Controls);
ControlsHelper.ControlImport<MCTextBox>(pipe, Controls);
ControlsHelper.ControlImport<MCTextBox>(speed, Controls);
}
public void ButtonAction(RuntimeParameter runtime)
{
if (ButtonE.Download == runtime.Sender)
{
if(MessageBox.Show("确定要下传数据到PLC", "下传数据确认", MessageBoxButtons.YesNo) == DialogResult.No)
{
return;
}
PlcDownload.PressureSettingDownload(BoxE);
}
if(ButtonE.MCButtonA == runtime.Sender)
{
if (MessageBox.Show("确定要下传数据到PLC", "下传数据确认", MessageBoxButtons.YesNo) == DialogResult.No)
{
return;
}
try
{
PlcDownload.DownSlio(slioEntity);
MessageBox.Show("下传成功");
}
catch (Exception)
{
MessageBox.Show("下传失败 参数异常");
}
}
if (ButtonE.MCButtonC == runtime.Sender)
{
if (MessageBox.Show("确定要下传数据到PLC", "下传数据确认", MessageBoxButtons.YesNo) == DialogResult.No)
{
return;
}
try
{
PlcDownload.DownPipe(pipe);
MessageBox.Show("下传成功");
}
catch (Exception)
{
MessageBox.Show("下传失败 参数异常");
}
}
if (ButtonE.MCButtonE == runtime.Sender)
{
if (MessageBox.Show("确定要下传数据到PLC", "下传数据确认", MessageBoxButtons.YesNo) == DialogResult.No)
{
return;
}
try
{
DB137WriterHelper.AddSpeed(new List<float>()
{
Convert.ToSingle(speed.TxtSpeedA.MCValue),
Convert.ToSingle(speed.TxtSpeedB.MCValue),
Convert.ToSingle(speed.TxtSpeedC.MCValue),
});
MessageBox.Show("下传成功");
}
catch (Exception)
{
MessageBox.Show("下传失败 参数异常");
}
}
}
}
}