Jan Suhrmann
Jan Suhrmann
Hi @danatcofo Thanks for your reply! Acctualy, I tried to set these switches via: Electron.App.CommandLine.AppendSwitch("high-dpi-support", "1"); Electron.App.CommandLine.AppendSwitch("force-device-scale-factor", "1"); var browserWindow = await Electron.WindowManager.CreateWindowAsync( new BrowserWindowOptions { Width = 1152, Height...
I created a ElectronHostHook using the electronize add hosthook command. This has created an ElectronHostHook folder with an index.js and a package.json file in it. The index.js looks like this:...
This is how my `index.ts` in the _ElectronHostHook_ folder now looks like: // @ts-ignore import * as Electron from "electron"; import { Connector } from "./connector"; export class HookService extends...