Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

SharedUI.Shared

Language: Oxygene, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/All/SharedUI/SharedUI.Shared

$(MSBuildThisFileDirectory)AppDelegate.pas

namespace SharedUI.Shared;

type
  AppDelegate = public partial class
  public

    property mainWindowController: MainWindowController read private write;

    method start;
    begin
      //
      //  this is the cross-platform entry point for the app
      //

      mainWindowController := new MainWindowController();
      mainWindowController.showWindow(nil);
    end;

    //
    // Add Shared code here
    //

  end;

end.