What is the difference between GTK# and Windows Forms?

后端 未结 4 739
清酒与你
清酒与你 2021-02-14 09:17

What is the difference between GTK# and windows forms? Are they totally different?

Thanks

4条回答
  •  渐次进展
    2021-02-14 09:37

    In short: Yes

    Both are GUI-Tookits, but WinForms (as the Name says) was mainly developed for windows. GTK has been developed for Gimp and is an approach for a multi os gui toolkit .

    If your application only runs on windows, in most cases you should use WinForms.

    If your application will run under different OS' (like linux, bsd, windows, macos,... ) you'll prefer GTK.

    For a better explanation look here.

提交回复
热议问题