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: Hydrogene, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Hydrogene/All/SharedUI/SharedUI.Shared

$(MSBuildThisFileDirectory)MainWindowController.Cocoa.cs

namespace SharedUI.Shared
{
	#if TOFFEE
	using AppKit;

	[IBObject]
	public partial class MainWindowController : NSWindowController
	{
		public this() : base withWindowNibName("MainWindow")
		{
			setup();
		}

		public override void windowDidLoad()
		{
			base.windowDidLoad();

			// Implement this method to handle any initialization after your window controller's
			// window has been loaded from its nib file.
		}

		//
		// Add Cocoa-specific code here
		//
	}
	#endif
}