I'm currently making a bot for a discord server with Discord.NET and I'd like to create a WinForm for this instead of a console. Is there a way to implement WinForms to a .NET Core app?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Generic Generics in Managed C++
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
No, not really. .NET Core is a specific selection of classes from the larger .NET Framework, which includes Windows Forms. Windows Forms is one of the things they (had to) cut out to make the smaller .NET Core.
Last I looked, .NET Core had support for UWP (a followup to WPF), Xamarin and ASP.Net 5 (Core version). UWP and maybe Xamarin would be suitable for Desktop applications:
I know this is an old post, but I am currently in the process of doing this I can tell you it is very possible now. Hopefully when I'm done it catches on, basically I'm creating a simple user interface to pass off to a D&D DM so he can administer the game easily.
Like I said I know this is an old post and probably no one cares, but I figured I'd throw it out there that it can be done.
.Net core 3 preview is released which includes WPF and Win Forms support. You can use it with Visual studio 2019 preview which can publish Win Forms platform independently and self contained.
Starting from .NET Core 3.0, you can create Windows Forms applications using .NET Core.
VS 2019
The project template is available in VS 2019.
VS 2017
You need to have Visual Studio 2017 Update 15.8 or higher.
[Visual Studio download site.]
Install the latest .NET Core 3.0 SDK
[daily build (latest changes, but less stable) or preview (more stable, recommended)].
Open command prompt and run the following command to create the project:
To build and run the project, you can go to the directory in which the project is created and open
MyWinFormsApp.csproj
using Visual Studio, build and run it.You can also run the following commands if you prefer to build and run from command line:
Note
Related links