Is it possible to make desktop GUI application in

2020-02-07 16:08发布

I have been developing WinForms programs for few years. I am now looking into .NET Core (including ASP.NET Core MVC). I am searching for the new GUI desktop technology. In Visual Studio 2015 update 3 I can't see any option to make a GUI app in .NET Core. What am I missing?

14条回答
趁早两清
2楼-- · 2020-02-07 16:35

You could use Electron and wire it up with Edge.js resp. electron-edge. Edge.js allows electron (node.js) to call .net dll's and vice versa. This way you can write the GUI with HTML, CSS and JavaScript and the backend with .net core. Electron itself is also cross platform and based on the chromium browser.

查看更多
男人必须洒脱
3楼-- · 2020-02-07 16:35

I'm working on a project that might help: https://github.com/gkmo/CarloSharp

The following application is written in .net with the UI in HTML/JS/CSS (Angular)

enter image description here

查看更多
登录 后发表回答