#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 449, 280, 192, 114)
$Pic1 = GUICtrlCreatePic("", 8, 8, 417, 257)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
基本代码如上,
要求
1,$Pic1 大过窗口.窗口滚动条正常且恰当的显示图像,不能滚动条无法完整滚动图像,也不能滚动后有大量空白.
2,窗口移动,窗口大小改变,窗口全屏后,仍然有效.
3,帮助中的是无效的,所以,直接复制是没用的.
4,要求简洁代码易读. |