itljl 发表于 2010-9-25 16:43:30


#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 623, 448, 192, 114)
$MenuItem1 = GUICtrlCreateMenu("文件")
$MenuItem2 = GUICtrlCreateMenuItem("打开", $MenuItem1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $MenuItem2
                        $var = FileOpenDialog("test", @WindowsDir & "\", "图像文件 (*.jpg;*.bmp)", 1 + 4 )
        EndSwitch
WEnd

楼主想定义这个事件做什么用?
页: 1 [2]
查看完整版本: [已解決]求一個菜單的例子