Add transparent option to webpreferences

This commit is contained in:
theolivenbaum
2021-11-13 11:13:35 +01:00
parent 2f9029e267
commit cbac8541be

View File

@@ -213,5 +213,11 @@ namespace ElectronNET.API.Entities
/// </value>
[DefaultValue(false)]
public bool WebviewTag { get; set; } = false;
/// <summary>
/// Make the web view transparent
/// </summary>
[DefaultValue(false)]
public bool Transparent { get; set; } = false;
}
}