找回密码
 加入
搜索
查看: 3939|回复: 4

[系统综合] 一个悬浮窗的代码 怎么能让窗口上的按钮起作用[已解决]

[复制链接]
发表于 2012-10-5 18:34:05 | 显示全部楼层 |阅读模式
本帖最后由 pyj521 于 2012-10-7 22:52 编辑

下面是一个悬浮窗的代码   怎么能让窗口上的按钮起作用  请大大们帮忙加上一段代码号码 也可以有偿帮助 小弟穷 多了给不起!谢谢各位了。拜托!!!!!!!!!在线等待
#NoTrayIcon
#Region ;**** 参数创建于 ACNWrapper_GUI ****
#AutoIt3Wrapper_icon=D:\autoit3\Aut2Exe\Icons\OhMy! Cyclop Icon 173.ico
#AutoIt3Wrapper_Compression=4
#EndRegion ;**** 参数创建于 ACNWrapper_GUI ****
#include <GUIConstantsEx.au3>
#include <GUIConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Misc.au3>
Global $start
Global $n = 0
Global $pos
Global $clickspeed = RegRead("HKEY_CURRENT_USER\Control Panel\Mouse", "DoubleClickSpeed")
$title2 = "双击了"
$AForm1 = GUICreate("", 38, 38, 600, 60, BitOR($WS_SYSMENU, $WS_POPUP, $WS_POPUPWINDOW, $WS_BORDER), $WS_EX_TOOLWINDOW)
GUISetBkColor(0xBFDBFF)

$icon = GUICtrlCreateIcon(@ScriptDir & "\Canon.ani", -1, 3, 3)
GUICtrlSetState(-1, $GUI_DISABLE)

$ContextMenu = GUICtrlCreateContextMenu()
Dim $JiaNMC, $i
$JiaNMC = IniReadSection(@ScriptDir & "\Canon.ini", "Name")
Dim $RunProAr[$JiaNMC[0][0] + 1]
For $i = 1 To $JiaNMC[0][0]
        $RunProAr[$i] = GUICtrlCreateMenuItem($JiaNMC[$i][0], $ContextMenu)
Next
GUICtrlCreateMenuItem("", $ContextMenu)
$Help = GUICtrlCreateMenuItem("关于", $ContextMenu)
GUICtrlCreateMenuItem("", $ContextMenu)
$exit = GUICtrlCreateMenuItem("退出", $ContextMenu)

$AForm2 = GUICreate($title2, 390, 230, 213, 133)

$Button1 = GUICtrlCreateButton("服务器①", 24, 40, 145, 33) 
$Button2 = GUICtrlCreateButton("服务器②", 24, 88, 145, 33) 
$Button3 = GUICtrlCreateButton("服务器③", 24, 136, 145, 33) 
$Button4 = GUICtrlCreateButton("服务器④", 24, 184, 145, 33) 
$Label1 = GUICtrlCreateLabel("机房Ⅰ", 56, 0, 79, 33) 
GUICtrlSetFont(-1, 18, 800, 0, "MS Sans Serif") 
$Button5 = GUICtrlCreateButton("服务器①", 216, 40, 145, 33) 
$Button6 = GUICtrlCreateButton("服务器②", 216, 88, 145, 33) 
$Button7 = GUICtrlCreateButton("服务器③", 216, 136, 145, 33) 
$Button8 = GUICtrlCreateButton("服务器③", 216, 184, 145, 33) 
$Label2 = GUICtrlCreateLabel("机房Ⅱ", 248, 0, 79, 33) 
GUICtrlSetFont(-1, 18, 800, 0, "MS Sans Serif") 
GUISetState(@SW_SHOW) 
#EndRegion ### END Koda GUI section ### 
GUISetState(@SW_SHOW, $AForm1)
WinSetOnTop($AForm1, "", 1)
WinSetTrans($AForm1, "", 200)

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $RunProAr[1] To $RunProAr[$JiaNMC[0][0]]
                        _RunPro()
                Case $GUI_EVENT_PRIMARYDOWN
                        _PRIMARYdown()
                Case $Help
                        about()
                Case $GUI_EVENT_CLOSE
                        GUISetState(@SW_HIDE, $AForm2)
                Case $exit
                        Exit
        EndSwitch
WEnd

Func about()
        MsgBox(262144, "关于:", "这是一个关于悬浮窗的演示程序。" & @CRLF & @CRLF _
                         & "            By Pcbar 2007.09.21" & @CRLF & "    Modify By 顽固不化 2009.11.3")
EndFunc   ;==>about

Func _RunPro()
        For $i = 1 To $JiaNMC[0][0]
                If $RunProAr[$i] = $nMsg Then
                        ShellExecute($JiaNMC[$i][1])
                        ExitLoop
                EndIf
        Next
EndFunc   ;==>_RunPro

Func Move()
        Dim $PosDiff[2], $MousePos, $WinPos
        $MousePos = MouseGetPos()
        $WinPos = WinGetPos($AForm1)
        $PosDiff[0] = $WinPos[0] - $MousePos[0]
        $PosDiff[1] = $WinPos[1] - $MousePos[1]
        While _IsPressed("01", DllOpen("user32.dll"))
                $MousePos = MouseGetPos()
                WinMove($AForm1, "", $MousePos[0] + $PosDiff[0], $MousePos[1] + $PosDiff[1])
                Sleep(10)
        WEnd
EndFunc   ;==>Move
Func _PRIMARYdown()
        Move()
        $pos = MouseGetPos()
        $guiPos = WinGetPos($AForm1, '')
        If ($pos[0] >= $guiPos[0] And $pos[0] <= $guiPos[0] + $guiPos[2]) And _
                        ($pos[1] >= $guiPos[1] And $pos[1] <= $guiPos[1] + $guiPos[3]) Then
                $n += 1
                If $n = 2 And (TimerDiff($start) < $clickspeed) Then
                        $n = 0
                        ShowHidemain()
                Else
                        $start = TimerInit()
                        $n = 1
                EndIf
        EndIf
EndFunc   ;==>_PRIMARYdown
Func ShowHidemain()
        If _WinIsVisible($AForm2) Then
                If BitAND(WinGetState($title2, ""), 16) Then WinSetState($title2, "", @SW_RESTORE)
                WinActivate($AForm2)
                Return
        Else
                GUISetState(@SW_SHOW, $AForm2)
        EndIf
EndFunc   ;==>ShowHidemain
Func _WinIsVisible($hWnd, $Text = "")
        Return BitAND(WinGetState($hWnd, $Text), 2)
EndFunc   ;==>_WinIsVisible

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?加入

×
发表于 2012-10-5 20:24:22 | 显示全部楼层
While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $RunProAr[1] To $RunProAr[$JiaNMC[0][0]]
                        _RunPro()
                Case $GUI_EVENT_PRIMARYDOWN
                        _PRIMARYdown()
                Case $Help
                        about()
                Case $GUI_EVENT_CLOSE
                        GUISetState(@SW_HIDE, $AForm2)
                Case $exit
                        Exit 
                case $button1
                    msgbox(0,"","1")
                               case $button2
                    msgbox(0,"","2")
        EndSwitch
WEnd

评分

参与人数 2金钱 +20 收起 理由
pyj521 + 10 谢谢
lpxx + 10

查看全部评分

发表于 2012-10-5 20:30:56 | 显示全部楼层
或者用GUICtrlSetOnEven也可以
 楼主| 发表于 2012-10-5 21:31:12 | 显示全部楼层
Azura 发表于 2012-10-5 20:24


可行 万分感激!谢谢我的朋友!
发表于 2012-10-5 22:16:45 | 显示全部楼层
注册windows消息是肯定可以处理的,也好判断。
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-9-29 23:36 , Processed in 0.186983 second(s), 23 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表