本帖最后由 binshiwo 于 2011-4-23 17:08 编辑
如下图片,但是PIC控件的两个卷动条无法使用。
我想要的效果是把图片最大话显示在控件里面,但是控件是固定的大小300*300。然后可以通过卷动条来左右移动它观察图片。
该怎么实现呢?请教各位。#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 471, 411, 249, 190, BitOR($WS_SYSMENU,$WS_POPUP,$WS_HSCROLL))
$Pic1 = GUICtrlCreatePic("C:\Documents and Settings\All Users\Documents\My Pictures\範例圖片\Sunset.jpg", 56, 40, 305, 273, BitOR($GUI_SS_DEFAULT_PIC,$WS_HSCROLL,$WS_VSCROLL))
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|