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/Product/PptPlan/FrmProPlanViewAction.cs

24 lines
649 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Mesnac.Action.Base;
namespace Mesnac.Action.ChemicalWeighing.Product.PptPlan
{
public class FrmProPlanViewAction : ChemicalWeighingAction, IAction
{
public void Run(RuntimeParameter runtime)
{
base.RunIni(runtime); //必须调用
ICSharpCode.Core.LoggingService<FrmProPlanViewAction>.Debug("打开生产计划窗口");
//初始化料仓设置窗口
FrmProPlan frmSVBSForm = new FrmProPlan();
frmSVBSForm.ShowDialog();
}
}
}