We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79b73e commit 14962e1Copy full SHA for 14962e1
1 file changed
src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs
@@ -217,8 +217,13 @@ public class BrowserWindowOptions
217
public TitleBarStyle TitleBarStyle { get; set; }
218
219
/// <summary>
220
- /// When using a frameless window this can be used to indicate if the
221
- /// standard control buttons should be shown. Default is false.
+ /// Configures the window's title bar overlay when using a frameless window.
+ /// Can be either:
222
+ /// - false: No title bar overlay.
223
+ /// - true: Enables the default title bar overlay.
224
+ /// - An object defining custom overlay options (such as height, color, etc.).
225
+ ///
226
+ /// Default is false.
227
/// </summary>
228
[JsonConverter(typeof(TitleBarOverlayConverter))]
229
public TitleBarOverlay TitleBarOverlay { get; set; }
0 commit comments