赞 | 0 |
VIP | 0 |
好人卡 | 17 |
积分 | 1 |
经验 | 4930 |
最后登录 | 2014-11-16 |
在线时间 | 69 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 69 小时
- 注册时间
- 2012-3-3
- 帖子
- 79
|
create_content应该要在末尾加s吧?
#--------------------------------------------------------------------------
# ● 生成窗口内容
#--------------------------------------------------------------------------
def create_contents
contents.dispose
if contents_width > 0 && contents_height > 0
self.contents = Bitmap.new(contents_width, contents_height)
else
self.contents = Bitmap.new(1, 1)
end
end |
|