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

Oxygene Logo

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

OxygeneWindow.xaml.pas

namespace OxygeneLogo;

interface

uses
  System.Windows,
  System.Windows.Controls,
  System.Windows.Data,
  System.Windows.Documents,
  System.Windows.Media,
  System.Windows.Navigation,
  System.Windows.Shapes;

type
  OxygeneWindow = public partial class(Window)
  private

    // To use Loaded event put the Loaded="WindowLoaded" attribute in root element of .xaml file.
    // method WindowLoaded(sender: Object; e: EventArgs );

    // Sample event handler:  
    // method ButtonClick(sender: Object; e: RoutedEventArgs);

  public
    constructor;

  end;
  
implementation

constructor OxygeneWindow;
begin
  InitializeComponent();
end;
  
end.