forked from ElectronNET/Electron.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTitleBarStyle.cs
More file actions
38 lines (33 loc) · 762 Bytes
/
Copy pathTitleBarStyle.cs
File metadata and controls
38 lines (33 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Newtonsoft.Json;
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public enum TitleBarStyle
{
/// <summary>
/// The default style
/// </summary>
[JsonProperty("default")]
defaultStyle,
/// <summary>
/// The hidden
/// </summary>
hidden,
/// <summary>
/// The hidden inset
/// </summary>
hiddenInset,
/// <summary>
/// The custom buttons on hover
/// </summary>
customButtonsOnHover
}
public class TitleBarOverlayConfig
{
public string color { get; set; }
public string symbolColor { get; set; }
public int height { get; set; }
}
}