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/ProjectDebug/DJZ_DebugAction.cs

38 lines
1.3 KiB
C#

using Mesnac.Action.Base;
using Mesnac.Controls.Base;
using Mesnac.Controls.Default;
using Mesnac.Controls.Default.GCTS;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.ProjectDebug
{
public class DJZ_DebugAction : ChemicalWeighingAction, IAction
{
public void Run(RuntimeParameter runtime)
{
base.RunIni(runtime); //必须调用
DJZ_GCTS CurrentSB2 = runtime.Sender as DJZ_GCTS;
string _sbvNumber = CurrentSB2.StatusName;
ICSharpCode.Core.LoggingService<DJZ_DebugAction>.Debug(_sbvNumber + "器件状态设置");
if (_sbvNumber == "")
{
ICSharpCode.Core.LoggingService<DJZ_DebugAction>.Warn(String.Format("请设置正确的名称!"));
return;
}
else
{
FrmProjectDebug frmProjectDebug = new FrmProjectDebug();
frmProjectDebug.FormText = CurrentSB2.Name;
frmProjectDebug.PlcName = CurrentSB2.StatusName;
frmProjectDebug.PlcValue = CurrentSB2.Status.ToString();
frmProjectDebug.ShowDialog();
}
}
}
}