开发用于关闭主机系统的 NetLogic
创建用于
立即关闭在其上运行
的 NetLogic。FactoryTalk Optix 应用程序
的主机 Windows®
系统先决条件
设置默认外部代码编辑器。请参见设置默认代码编辑器。
- 开发用于关闭主机系统的 NetLogic
- 在项目视图中,右键单击NetLogic,然后选择 。
- 将光标悬停在 NetLogic 上,选择 并输入ShutDownSystemNetLogic
- 双击 NetLogic。外部代码编辑器将打开。
- 使用以下代码替换现有代码:#region StandardUsing using System; using FTOptix.Core; using FTOptix.CoreBase; using FTOptix.HMIProject; using UAManagedCore; using OpcUa = UAManagedCore.OpcUa; using FTOptix.NetLogic; using FTOptix.OPCUAServer; using FTOptix.UI; using System.Diagnostics; #endregion public class ShutDownSystemNetLogic : FTOptix.NetLogic.BaseNetLogic { [FTOptix.NetLogic.ExportMethod] public void SystemShutDown() { var psi = new ProcessStartInfo("shutdown", "/s /t 0"); psi.CreateNoWindow = true; psi.UseShellExecute = false; Process.Start(psi); } }
- 保存代码。
提供反馈