Best way to create a Windows-like form

I would like to create a Windows-like form, by that I mean a Window that has the standard minimize, maximize and close icons in the upper right corner.
Also on the this form I would like to create a series of buttons, spread equally horizontally across the top of the form. Each of these buttons would have a few possible actions:

  1. produce a list of menu items that a user could select for a particular tase
  2. open a window directly

I have been reading about "box" but am not sure if this the best approach.
Are there any Windows-form crates that would contain code that is helpful to me??

Thanks

Pardon me if I'm misinterpreting here, but you are just after a standard GUI app, but made specifically via Windows forms (As in "Windows Forms .NET")?

Because, based on a short google search, specifically "Windows Forms .NET" isn't easily plausible in Rust. There are alternative solutions, however.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.