setbkcolor

setbkcolor,函式名。該函式用指定的顏色值來設定當前的背景色,如果指定的顏色值超出了當前設備的表示範圍,則設定為最近似的、設備可以表示的顏色。

基本介紹

  • 外文名:setbkcolor
  • 類別:函式
  • 函式功能:設定當前的背景色
  • 函式原型:COLORREF SetBkColor
函式原型,參數說明,返回值,示例,

函式原型

COLORREF SetBkColor(_
HDC hdc,
COLORREF color);

參數說明

hdc: 設定上下文句柄
crColor: 標識新的背景顏色值。如果想要獲得COLORREF的值,請使用RGB宏。

返回值

如果函式成功,返回值是原背景色的COLORREF值。如果函式失敗,則返回CLR_INVALID。想要獲得更多信息,請調用GetLastError函式。
速查:
Windows NT/2000: 需要 Windows NT 3.1 或更高版本.
Windows 95/98: 需要 Windows 95 或更高版本.
Header: 在頭檔案Wingdi.h中聲明;請包含 Windows.h.
Library: Use Gdi32.lib.程式例

示例

#include <WinAPI>
#include <WindowsConstants>
#include <FontConstants>
Global $tRECT, $hFont, $hOldFont, $hDC
HotKeySet("{ESC}", "_Exit")
$tRECT = DllStructCreate($tagRect)
DllStructSetData($tRECT, "Left", 5)
DllStructSetData($tRECT, "Top", 5)
DllStructSetData($tRECT, "Right", 250)
DllStructSetData($tRECT, "Bottom", 50)
$hDC = _WinAPI_GetDC(0)
$hFont = _WinAPI_CreateFont(50, 0, 0, 0, 400, False, False, False, $DEFAULT_CHARSET, _
$OUT_DEFAULT_PRECIS, $CLIP_DEFAULT_PRECIS, $DEFAULT_QUALITY, 0, 'Arial')
$hOldFont = _WinAPI_SelectObject($hDC, $hFont)
_WinAPI_SetTextColor($hDC, 0x0000FF)
_WinAPI_SetBkColor($hDC, 0x000000)
; comment next line to get black background instead of transparent one
_WinAPI_SetBkMode($hDC, $TRANSPARENT)
While 1
_WinAPI_DrawText($hDC, "Hello world!", $tRECT, $DT_CENTER)
Sleep(100)
WEnd
Func _Exit()
_WinAPI_SelectObject($hDC, $hOldFont)
_WinAPI_DeleteObject($hFont)
_WinAPI_ReleaseDC(0, $hDC)
_WinAPI_InvalidateRect(0, 0)
$tRECT = 0
Exit
EndFunc ;==>_Exit

相關詞條

熱門詞條

聯絡我們