Application starts with Window Title "Electron.Net" #283

Closed
opened 2026-01-29 16:35:40 +00:00 by claunia · 2 comments
Owner

Originally created by @ErikApption on GitHub (Feb 20, 2019).

When I launch my Electron.net app - it takes a little while for the window title to change. On startup, it says "Electron.NET" and then later on after my web stack is ready, it changes to the proper name.
I tried to trace where the initial window title comes from but was not able to figure that one out. Is that configurable?

Thanks

Originally created by @ErikApption on GitHub (Feb 20, 2019). When I launch my Electron.net app - it takes a little while for the window title to change. On startup, it says "Electron.NET" and then later on after my web stack is ready, it changes to the proper name. I tried to trace where the initial window title comes from but was not able to figure that one out. Is that configurable? Thanks
claunia added the question label 2026-01-29 16:35:40 +00:00
Author
Owner

@rpadevops commented on GitHub (Mar 27, 2019):

You can pass the name into the window creation

Task.Run(async () => await Electron.WindowManager.CreateWindowAsync(new BrowserWindowOptions { Title = "Your fancy name here" }));

@rpadevops commented on GitHub (Mar 27, 2019): You can pass the name into the window creation `Task.Run(async () => await Electron.WindowManager.CreateWindowAsync(new BrowserWindowOptions { Title = "Your fancy name here" }));`
Author
Owner

@gfs commented on GitHub (Mar 30, 2019):

@flexbp Thanks! Worked for me.

@gfs commented on GitHub (Mar 30, 2019): @flexbp Thanks! Worked for me.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Electron.NET#283