implement Demo App sections: Dialogs, Menu, Tray, Shell, CrashHang, Notification, Shortcuts etc. Fix some API bugs and implement GlobalShortcut-, Shell- and WebContents-API.

This commit is contained in:
Gregor Biswanger
2017-10-21 04:37:01 +02:00
parent 9046f6ca25
commit 248ddde82b
61 changed files with 2505 additions and 57 deletions

View File

@@ -0,0 +1,20 @@
namespace ElectronNET.API
{
public enum ShortcutLinkOperation
{
/// <summary>
/// Creates a new shortcut, overwriting if necessary.
/// </summary>
create,
/// <summary>
/// Updates specified properties only on an existing shortcut.
/// </summary>
update,
/// <summary>
/// Overwrites an existing shortcut, fails if the shortcut doesnt exist.
/// </summary>
replace
}
}