Questions tagged [electron.net]

electron.NET lets you build cross platform desktop apps with ASP.NET NET Core. Go here to learn more.

51 questions
1
vote
1 answer

How to build installers for .NET Core app?

I develop my NET Core app+Electron.NET. It is cross-platform app. How to build installers for .NET Core app for Windows? Linux? Mac OS? What tool to use?
ZedZip
  • 4,355
  • 8
  • 43
  • 81
1
vote
0 answers

How to create a child modal window in Electron.NET?

I am creating an app using Electron.NET. Although in Electron there is the possibility to create a window passing its parent in the window options, i cannot seem to be able to do that in Electron.NET. I tried also to use the…
georgekar
  • 11
  • 2
1
vote
0 answers

Show video on Raspberry pi in .net

I need to implement showing video (from file or stream, it does not matter) using Raspberry pi, and requirement is to use c# programming language (mono or preferably .net core). Video needs to be shown in full screen on a monitor/TV pi is connected…
user2081328
  • 169
  • 3
  • 11
1
vote
2 answers

How to run a scheduled task using electron.net

I need a task to run every 60 seconds to go out and fetch data from a web api. Once the data comes back it will process the data which should not freeze the gui when processing. Is there a way to do this using electron.net?
Luke101
  • 56,845
  • 75
  • 204
  • 330
0
votes
0 answers

How to electronize an ASP.NET Core hosted Blazor WebAssembly app

I have created a new Blazor WebAssembly project and made it ASP.NET Core hosted (so, Visual Studio created three projects, one for the server, the actual WebAssembly client project, as well as a class library holding types used by both apps). Then,…
Matze
  • 4,433
  • 4
  • 45
  • 59
0
votes
0 answers

Do we use Electron.Net for converting ASP.Net MVC in to desktop application?

When I came through several blogs I could able to see the Electron.Net have the ability to convert the ASP.Net Core application to desktop application. But I have not seen any blogs that shows the Electron.net could convert ASP.Net MVC(version 5)…
0
votes
0 answers

Electron.net undefined symbol: xkb_x11_get_core_keyboard_device_id when using IoHook

what I'm trying to do is to track Keyboard and Mouse events to create a TimeTracker, for that I'm using Iohook which is working perfectly fine with windows. Below is my code // @ts-ignore import * as Electron from "electron"; import { Connector }…
0
votes
1 answer

Electron NET doesn't run in Production mode in win10

Iam using asp.net core razor pages with Electron NET in debug the Electron app its run with no errors whene i build it using electron cli >electronize build /target win and run the setup it installed and the app appears on task manager but no…
0
votes
0 answers

Install npm packages and use them in Electron.NET

I am using Electron.Net and wanted to add an npm package and use it in the project's razor pages. I read the documentation and found HostHook can do the job. But it is not working. I added ElectronHostHook folder using electronize add hosthook. The…
moghaf
  • 23
  • 2
  • 8
0
votes
0 answers

How to handle new-window of WebContent

We have to intercept the creation of a popup window. In a native electron app I would use browserWindow.webContents.on('new-window', ...). Is there a way to achieve the same thing with electron net? I checked browserWindow.WebContents but did not…
0
votes
0 answers

How to disable auto launch of an electron application after installation?

I have an Asp.Net Core application and I'm using ElectronNET to make a desktop application. After the installation, my electron application starts automatically. How can I disable the auto launch?
Aykut Demirci
  • 138
  • 3
  • 16
0
votes
0 answers

I am calling webapi from electron.net application, where do i store token and other user info received?

I am accessing api from electron.net (asp.net mvc core 3.1) I would like to store token and use it across application where do i store this?
samdubey
  • 379
  • 2
  • 9
0
votes
1 answer

ElectronNET generate 32 bit exe or other custom versions with dot net core project

Electronize build a exe with target 32bit windows When running the default code found on the official documentation electronize build /target custom win7-x86;win32 /electron-arch ia32 simply fails to run, gives some console error. Build Electron…
Arun Prasad E S
  • 7,342
  • 6
  • 61
  • 75
0
votes
0 answers

Blazor electron.net app get warning worldSafeExecuteJavaScript

I create a Blazor application and build with Electron.NET, I get this warning but I can not see the worldSafeExecuteJavaScript option in WebPreferences so I can not enable it. (electron) Security Warning: webFrame.executeJavaScript was called…
QHu91_IT
  • 139
  • 1
  • 11
0
votes
0 answers

Window inside window Electron.NET

I'm writing an app in Electron.NET and I want to show a native window inside another native window. In a normal C# form application I write: Form x = new Form(); Form NewForm = new Form(); x.IsMdiContainer = true; NewForm.MdiParent =…
user10800877