f.pos 未定义?
我的问题的简化版本
require 'wx'
Wx::App.run do
f = Wx::Frame.new nil
f.title= 'the potlee'
f.size= Wx::Size.new( 200 , 500)
f.pos= Wx::point.new(50,50)
f.show
end
我收到此错误
`method_missing': undefined method `pos=' for #<Wx::Frame:0x207d020>
如何设置框架上的尺寸而不是位置?
注意:在 Windows 上使用最新版本的 wxruby(带有自己的 ruby 解释器)。
simplified version of my problem
require 'wx'
Wx::App.run do
f = Wx::Frame.new nil
f.title= 'the potlee'
f.size= Wx::Size.new( 200 , 500)
f.pos= Wx::point.new(50,50)
f.show
end
i get this error
`method_missing': undefined method `pos=' for #<Wx::Frame:0x207d020>
how can i set the size on the frame but not the position?
note:using the latest version of wxruby on windows(which came with its own ruby interpreter).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Wx::Point 不应该是大写的 P 吗?
Should you not have a capital P for Wx::Point?