isee.NET Framework Documentation

ApplicationController Class

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

[Visual Basic]
Public Class ApplicationController
[C#]
public class ApplicationController

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Example

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));
        }
    }
}

Requirements

Namespace: iseesystems.iseeNET.Controllers.WindowsForms

Assembly: iseesystems.iseeNET.Controllers.WindowsForms (in iseesystems.iseeNET.Controllers.WindowsForms.dll)

See Also

ApplicationController Members | iseesystems.iseeNET.Controllers.WindowsForms Namespace