How do I display an Entity when the application starts?

You can provide TrueView with a list of explorable entities before the framework is started:

using Evolving.TrueView;

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);

        Course course = new Course();
        Location location = new Location();
        MyApplication.ExplorableEntities.Add(course);
        MyApplication.ExplorableEntities.Add(location);

        Application.Run(MyApplication.Workbench);
    }
}

Search Knowledge Base

Have a question? Ask here.

Your name * Your email address * Your question/comment*