Samples
Samples
SharedUI.Shared
Language: Hydrogene, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Hydrogene/All/SharedUI/SharedUI.Shared
-
SharedUI.Shared
-
References
-
Source Files
- $(MSBuildThisFileDirectory)MainWindowController.cs
- $(MSBuildThisFileDirectory)MainWindow.xaml.cs
- $(MSBuildThisFileDirectory)MainWindowController.Cocoa.cs
- $(MSBuildThisFileDirectory)MainWindowController.WPF.cs
- $(MSBuildThisFileDirectory)Aliases.cs
- $(MSBuildThisFileDirectory)AppDelegate.cs
- $(MSBuildThisFileDirectory)AppDelegate.Cocoa.cs
- $(MSBuildThisFileDirectory)AppDelegate.WPF.cs
- Other Files
-
References
$(MSBuildThisFileDirectory)AppDelegate.cs
namespace 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
//
}
}
