Is it possible to make desktop GUI application in .NET Core?

后端 未结 15 1801
我在风中等你
我在风中等你 2020-12-12 11:02

I have been developing Windows Forms 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.

15条回答
  •  眼角桃花
    2020-12-12 11:22

    You were not missing anything. Microsoft shipped no reasonable way to create GUI applications directly using .NET Core until .NET Core 3, though UWP (Universal Windows Platform) is partially built on top of .NET Core.

    .NET Core 3.0 includes support for Windows Forms and WPF, though it is Windows-only.

    .NET 6 will include .NET MAUI, which will support Windows and macOS desktop applications and mobile applications, with Linux desktop applications supported by the community (not MS). .NET 5 will include a preview version of .NET MAUI.

    For third-party cross platform options, see other answers.

提交回复
热议问题