Samples
Samples
SharedUI.Shared
Language: Oxygene, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/All/SharedUI/SharedUI.Shared
-
SharedUI.Shared
-
References
-
Source Files
- $(MSBuildThisFileDirectory)MainWindowController.pas
- $(MSBuildThisFileDirectory)MainWindow.xaml.pas
- $(MSBuildThisFileDirectory)MainWindowController.Cocoa.pas
- $(MSBuildThisFileDirectory)MainWindowController.WPF.pas
- $(MSBuildThisFileDirectory)Aliases.pas
- $(MSBuildThisFileDirectory)AppDelegate.pas
- $(MSBuildThisFileDirectory)AppDelegate.Cocoa.pas
- $(MSBuildThisFileDirectory)AppDelegate.WPF.pas
- Other Files
-
References
$(MSBuildThisFileDirectory)AppDelegate.Cocoa.pas
namespace SharedUI.Shared;
{$IF COCOA}
type
[NSApplicationMain, IBObject]
AppDelegate = public partial class(INSApplicationDelegate)
public
method applicationDidFinishLaunching(notification: NSNotification);
begin
start();
end;
//
// Add Cocoa-specific code here
//
end;
{$ENDIF}
end.
