回复 user3000
你这个是移动到控件上面出现提示,而楼主是要求点击后出现提示!
我觉得楼主 ...
hzxymkb 发表于 2011-12-31 22:51
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#region ### START Koda GUI section ### Form=
Opt('guioneventmode', 1)
Local $WinTtle = 'Test Win'
$Form1 = GUICreate($WinTtle, 462, 294, 267, 212)
GUISetOnEvent($GUI_EVENT_CLOSE, '_Exit')
$Group1 = GUICtrlCreateGroup("总体大概", 40, 32, 393, 209)
$Radio1 = GUICtrlCreateRadio("Radio1", 88, 96, 73, 33)
GUICtrlSetOnEvent(-1, '_ClickOn')
$Radio2 = GUICtrlCreateRadio("Radio2", 264, 96, 73, 33)
GUICtrlSetOnEvent(-1, '_ClickOn')
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
While 1
Sleep(100)
WEnd
Func _Exit()
Exit
EndFunc
Func _ClickOn()
ToolTip('Click...')
Sleep(500)
ToolTip('')
EndFunc
点击的, 不过这样子....实现什么目的呢? |