namespace ElectronNET.API
{
public static class Electron
{
///
/// Communicate asynchronously from the main process to renderer processes.
///
public static IpcMain IpcMain { get { return IpcMain.Instance; } }
///
/// Control your application's event lifecycle.
///
public static App App { get { return App.Instance; } }
///
/// Control your windows.
///
public static WindowManager WindowManager { get { return WindowManager.Instance; } }
///
/// Create native application menus and context menus.
///
public static Menu Menu { get { return Menu.Instance; } }
///
/// Display native system dialogs for opening and saving files, alerting, etc.
///
public static Dialog Dialog { get { return Dialog.Instance; } }
///
/// Create OS desktop notifications
///
public static Notification Notification { get { return Notification.Instance; } }
///
/// Add icons and context menus to the system’s notification area.
///
public static Tray Tray { get { return Tray.Instance; } }
}
}