是否可以为 gnome 编写代码,然后将其构建到 windows 上?
我想编写一个数据库程序并为工作中的 Windows 机器构建它。不需要太多打磨就可以做到吗? (可以这么说)
I want to write a database program and have it built for a windows machine at work. Is that possible to do without much grinding? (so to speak)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,那应该是可能的。 有一个项目将 GTK+ 引入 Windows。
但请注意,跨平台程度越高,用户体验通常会恶化。
Yes, that should be possible. There's a project to bring GTK+ to windows.
Note, however, that user experience usually deteriorates, the more cross-platform you are.
使用跨平台语言,例如:
或者,如果您更喜欢 C++,请使用 Boost 库:http ://www.boost.org/
从网站:
Use a cross-platform language like:
Or, if you prefer C++, use the Boost libraries: http://www.boost.org/
From the website:
除了 SimpleCoder 的评论之外:如果它是一个带有 UI 的程序,请确保您使用的 UI 工具包也是跨平台的,或者以可以在相同业务层使用不同 UI 工具包的方式设计它(一个好的模式)将是 MVC 模式)。
Additionally to SimpleCoder's remarks: If it is a program with an UI, make sure that you use an UI toolkit that also is cross-platform or design it in a way that you can use different UI toolkits with the same business layer (a good pattern would be the MVC Pattern).