在 FXRuby 中,当尝试指定字体时,出现错误“FXDCWindow::setFont:指定了非法或 NULL 字体。”,如何解决此问题?
在 Ruby 中,当尝试指定字体时,出现错误“FXDCWindow::setFont:指定了非法或 NULL 字体。”。我尝试这样做:
@font = FXFont.new(app, 'times')
我需要设置一种字体才能在我的程序中使用drawText,但我不知道如何设置。哦,郑重声明,我只是一个初学者。谢谢!
In Ruby when trying to specify a font I get an error "FXDCWindow::setFont: illegal or NULL font specified.". I tried doing it like this:
@font = FXFont.new(app, 'times')
I need to set a font in order to use drawText in my program and I can't figure out how to. Oh and for the record I'm justt a beginner. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据文档,您至少需要指定大小。尝试:
According to the documentation, you need to specify the size at least. Try:
确保在创建字体对象之前没有尝试使用它;请参阅http://www.fox-toolkit.org/faq.html#ILLEGALICON。
Make sure you're not trying to use the font object before it has been created; see http://www.fox-toolkit.org/faq.html#ILLEGALICON.