英文:
Does ASP.NET Core app support desktop applications?
问题
ASP.NET Core可以用于创建桌面应用程序。您可以使用Electron等技术来支持桌面应用程序开发。
英文:
My project is based on PHP tool. I need to fetch the data from that tool using ASP.NET C# to convert this to desktop application. Will ASP.NET Core app support desktop applications?
Or suggest any technology which will support desktop application.
答案1
得分: 1
你可以使用.Net Core来实现Windows Presentation Foundation(WPF)应用程序,但目前只能使用Visual Studio作为集成开发环境(Rides不支持它)。
更多信息请参考:
https://learn.microsoft.com/en-us/visualstudio/get-started/csharp/tutorial-wpf?view=vs-2022
我个人更喜欢使用Electron来创建桌面应用程序,它是一个跨平台的基于JavaScript的框架。
查看Electron的文档:https://www.electronjs.org/
英文:
You can implement a Windows Presentation Foundation (WPF) application using .Net Core, but for now, you may only use Visual Studio as an IDE (Rides does not support it).
See this for more information:
https://learn.microsoft.com/en-us/visualstudio/get-started/csharp/tutorial-wpf?view=vs-2022
I personally prefer to create desktop apps using Electron, which is a cross-platform JavaScript-based framework.
See Electron's documentations here: https://www.electronjs.org/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论