Samples
Samples
SharedUI.Shared
Language: Iodine, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Iodine/All/SharedUI/SharedUI.Shared
-
SharedUI.Shared
-
References
-
Source Files
- $(MSBuildThisFileDirectory)MainWindowController.java
- $(MSBuildThisFileDirectory)MainWindow.xaml.java
- $(MSBuildThisFileDirectory)MainWindowController.Cocoa.java
- $(MSBuildThisFileDirectory)MainWindowController.WPF.java
- $(MSBuildThisFileDirectory)Aliases.cs
- $(MSBuildThisFileDirectory)AppDelegate.java
- $(MSBuildThisFileDirectory)AppDelegate.Cocoa.java
- $(MSBuildThisFileDirectory)AppDelegate.WPF.java
- Other Files
-
References
$(MSBuildThisFileDirectory)AppDelegate.java
package SharedUI.Shared;
public __partial class AppDelegate
{
public MainWindowController mainWindowController { __get; private __set; }
public void start()
{
//
// this is the cross-platform entry point for the app
//
mainWindowController = new MainWindowController();
mainWindowController.showWindow(null);
//
// Add Shared code here
//
}
}
