填充矩形
#Include <GDIPlus.au3>
_GDIPlus_GraphicsFillRect($hGraphics, $iX, $iY, $iWidth, $iHeight[, $hBrush = 0])
$hGraphics | 图形对象的句柄 |
$iX | 矩形左上角 X 坐标 |
$iY | 矩形左上角 Y 坐标 |
$iWidth | 矩形宽度 |
$iHeight | 矩形高度 |
$hBrush | [可选参数] 填充矩形的画笔对象句柄. 如果为 0, 使用黑色画笔. |
成功: | 返回 True |
失败: | 返回 False |
在MSDN中搜索
#include <GUIConstantsEx.au3>
#include <GDIPlus.au3>
_Main()
Func _Main()
Local $hGUI, $hGraphic
; 创建 GUI
$hGUI = GUICreate("GDI+", 400, 300)
GUISetState()
; 填充矩形
_GDIPlus_Startup()
$hGraphic = _GDIPlus_GraphicsCreateFromHWND($hGUI)
_GDIPlus_GraphicsFillRect($hGraphic, 10, 10, 100, 100)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
; 清理资源
_GDIPlus_GraphicsDispose($hGraphic)
_GDIPlus_Shutdown()
EndFunc ;==>_Main