以文本方式查看主题
- Foxtable(狐表) (http://foxtable.net/bbs/index.asp)
-- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2)
---- [求助] (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=44139)
|
-- 作者:yld
-- 发布时间:2013/12/24 10:08:00
-- [求助]
在窗口1中有二个分组框,分别是GroupBox1 和 GroupBox2,二个分组框内都有N个“按钮”,如果我点击 GroupBox1时,可显示出此按钮的名称,在 点击 GroupBox2时不显示,全局事件代码如何写?请各位帮忙了。
此主题相关图片如下:窗口1.jpg
|
-- 作者:Bin
-- 发布时间:2013/12/24 10:11:00
--
if e.Sender.Parent is not nothing then \'判断一下是否有父控件 if e.Sender.Parent.name="GroupBox1" then \'如果父控件是GroupBOx1 messagebox.show(e.sender.name)
|
-- 作者:yld
-- 发布时间:2013/12/24 11:19:00
--
报错,麻烦再看看! 此主题相关图片如下:出错.jpg
|
-- 作者:Bin
-- 发布时间:2013/12/24 11:20:00
--
if e.Sender.Parent isnot nothing then \'判断一下是否有父控件
|
|
-- 作者:yld
-- 发布时间:2013/12/24 11:30:00
--
OK! 谢谢!
|