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

后端 未结 15 1785
我在风中等你
我在风中等你 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:32

    For creating a console-based UI, you can use gui.cs. It is open-source (from Miguel de Icaza, creator of Xamarin), and runs on .NET Core on Windows, Linux, and macOS.

    It has the following components:

    • Buttons
    • Labels
    • Text entry
    • Text view
    • Time editing field
    • Radio buttons
    • Checkboxes
    • Dialog boxes
      • Message boxes
    • Windows
    • Menus
    • ListViews
    • Frames
    • ProgressBars
    • Scroll views and Scrollbars
    • Hexadecimal viewer/editor (HexView)

    Sample screenshot

提交回复
热议问题