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

Clock

Language: Oxygene, Platform: Echoes, Category: WPF
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Echoes/WPF/Clock

MyApp.xaml.pas

namespace AvalonApplication4;

interface

uses
  System.Windows,
  System.Data,
  System.Xml,
  System.Configuration;

type
  MyApp = public partial class(Application)
  private
    method AppStartingUp(sender: Object; e: StartingUpCancelEventArgs);

  end;
  
implementation

method MyApp.AppStartingUp(sender: Object; e: StartingUpCancelEventArgs);
begin
  var lMainWindow := new OxygeneWindow();
  
  //
  lMainWindow.Show();
end;
 
end.