仅使用 FPC 的 GUI
我想知道如何在不使用Delphi语言(Object Pascsl)的情况下,仅使用安装了Lazarus的FPC(Pascal)来开发GUI应用程序(32位)。谢谢。
I want to know how I can develop GUI applications(32 Bits) without using Delphi language(Object Pascsl), only by using FPC with Lazarus installed(Pascal). Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
直接使用小部件集。例如,查看packages/gtk2 中unix 的示例,或windows win32api 使用演示。 (FPC win32安装中的demo\win32)
但是不使用lazarus会让你失去平台独立性,并且轻松很多。
看看拉撒路是如何做到的,仍然是有可能的。
第二个选项是 https://github.com/mse-org/mseide-msegui
Use a widget set directly. Look at e.g. the examples in packages/gtk2 for unix, or the windows win32api usage demo. (demo\win32 in the FPC win32 installation)
But not using lazarus makes you lose platform independance, and a lot of ease.
Looking how lazarus does it, is still a possibility.
A second option is https://github.com/mse-org/mseide-msegui
您还可以使用 FPC Qt4 绑定。
You can also use FPC Qt4 Binding.
看一下内置的 LCL 和外部的 fpGUI 和 mseGUI 。
Take a look at built in LCL, and external fpGUI and mseGUI.