From cbac8541beffd44b6872b5f90971d5dba1924e30 Mon Sep 17 00:00:00 2001 From: theolivenbaum Date: Sat, 13 Nov 2021 11:13:35 +0100 Subject: [PATCH] Add transparent option to webpreferences --- ElectronNET.API/Entities/WebPreferences.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ElectronNET.API/Entities/WebPreferences.cs b/ElectronNET.API/Entities/WebPreferences.cs index ea4a1f1..294d57d 100644 --- a/ElectronNET.API/Entities/WebPreferences.cs +++ b/ElectronNET.API/Entities/WebPreferences.cs @@ -213,5 +213,11 @@ namespace ElectronNET.API.Entities /// [DefaultValue(false)] public bool WebviewTag { get; set; } = false; + + /// + /// Make the web view transparent + /// + [DefaultValue(false)] + public bool Transparent { get; set; } = false; } } \ No newline at end of file