ahk界面设计中的文件选择

Gui Font, s16, 微软雅黑
Gui Add, Edit, x56 y135 w431 h43 v文件路径, 请输入文件路径
Gui Font, s16, 微软雅黑
Gui Add, Picture, x486 y133 w48 gFilePath h48 Icon5, shell32.dll
returnGui Font, s16, 微软雅黑
Gui Add, Edit, x56 y135 w431 h43 v文件路径, 请输入文件路径
Gui Font, s16, 微软雅黑
Gui Add, Picture, x486 y133 w48 gFilePath h48 Icon5, shell32.dll
Gui, Show, w688 h388, 信手拈来按键帮你来
return

FilePath:
Gui,Submit ,NoHide
FileSelectFile, SelectedFile, M,c:\ , 打开文件, 文本文档 (*.txt; *.doc)
if SelectedFile =
MsgBox, 用户没有选择任何文件
else
GuiControl, ,文件路径, %SelectedFile%
return

你可能感兴趣的:(ahk界面设计中的文件选择)