SetWinBackgroundImage | ||||||
Syntax: | ||||||
SetWinBackgroundImage( hWnd, hBitmap ) | ||||||
Parameters: | ||||||
| ||||||
Description: | ||||||
Setzt ein Hintergrundbild in das Fenster. | ||||||
Example: | ||||||
hWnd = OpenWindow(0, x, y, x2, y2, #WS_POPUP, "Window Name") hBitmap = LoadImage(1,"MyPicture.bmp") SetWinBackgroundImage(hWnd, hBitmap) hWnd = OpenWindow(0, x, y, x2, y2, #WS_POPUP, "Window Name") SetWinBackgroundImage(hWnd, LoadImage(1,"MyPicture.bmp")) | ||||||
|