Use this class to start up your isee.NET Framework Windows Applications
For a list of all members of this type, see ApplicationController Members.
System.Object
iseesystems.iseeNET.Controllers.WindowsForms.ApplicationController
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
C# Example
using System;
using iseesystems.iseeNET;
using iseesystems.iseeNET.Controllers.WindowsForms;
using System.Windows.Forms;
namespace PredatorPrey.NET
{
public class PredatorPrey
{
public PredatorPrey() { }
//Entry point of the Application
public static void Main()
{
string modelPath = Application.StartupPath + @"\NetSim Tutorial 1.TXM";
Simulation sim = ApplicationController.Application_Start(modelPath, "xxxxxxxxxx");
Application.Run(new Home(sim));
}
}
}
Namespace: iseesystems.iseeNET.Controllers.WindowsForms
Assembly: iseesystems.iseeNET.Controllers.WindowsForms (in iseesystems.iseeNET.Controllers.WindowsForms.dll)
ApplicationController Members | iseesystems.iseeNET.Controllers.WindowsForms Namespace