Live data from Hacker News

Ask HN: Any way to write a simple desktop app anymore?

news.ycombinator.com

11–18 of 18 posts

Re: Ask HN: Any way to write a simple desktop app anymore?

#11
A desktop app in Windows only requires an executable. Rust and Zig compile to executables.

Lately I have made efforts to divorce a variety of games for Windows from Steam DRM. I am hosting these games on a Linux file server for ease of access anywhere in the house. I am also using WinLaunch as a front end to map to the game executables so that in one click I can be running a large Windows game from any of my Windows computers.

Re: Ask HN: Any way to write a simple desktop app anymore?

#13
I use C# with Visual Studio Community.

Typically I use Windows Forms as it is easy and plenty of online help, as it has not changed much since they tried to get rid of it 20 years ago LOL. (specifically Windows Forms App NOT Windows Forms App (.NET Framework))

Works well with SQLite if you need a DB.

Sometimes I just do a console app if it fits the need.

Re: Ask HN: Any way to write a simple desktop app anymore?

#16
Windows Forms is still alive and will never die, and very low overhead to start with, and works on new and shiny .NET 8.

If Linux or macOS, you can use AvaloniaUI instead which is sufficiently advanced but assumes some prior knowledge.

- https://github.com/dotnet/winforms/blob/main/docs/getting-st...

- https://docs.avaloniaui.net/docs/get-started/

Post reply on HN