mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-17 21:26:37 +00:00
implement enum for types, implement OpenDialog from Dialog-API
This commit is contained in:
21
ElectronNET.API/Entities/OnTopLevel.cs
Normal file
21
ElectronNET.API/Entities/OnTopLevel.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public enum OnTopLevel
|
||||
{
|
||||
normal,
|
||||
floating,
|
||||
[Description("torn-off-menu")]
|
||||
tornOffMenu,
|
||||
[Description("modal-panel")]
|
||||
modalPanel,
|
||||
[Description("main-menu")]
|
||||
mainMenu,
|
||||
status,
|
||||
[Description("pop-up-menu")]
|
||||
popUpMenu,
|
||||
[Description("screen-saver")]
|
||||
screenSaver
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user