UDF > WinAPIEx > GDI > DeviceContext >


_WinAPI_GetBkMode

Obtient le mode actuel de mixage de l'arrière-plan d'un contexte de périphérique spécifié

#include <WinAPIGdiDC.au3>
_WinAPI_GetBkMode ( $hDC )

Paramètre

$hDC Handle du contexte de périphérique dont le mode d'arrière-plan doit être retourné

Valeur de retour

Succès: Retourne une valeur qui spécifie le mode de mixage de l'arrière-plan actuel, OPAQUE OU TRANSPARENT
Échec: Retourne 0

Remarque

Le mode de mixage d'arrière-plan d'un contexte de périphérique affecte le texte, les pinceaux à hachures, et les styles de crayon qui ne sont pas des lignes pleines.

En relation

_WinAPI_CreatePen, _WinAPI_DrawText, _WinAPI_SelectObject, _WinAPI_SetBkMode

Voir aussi

Consultez GetBkMode dans la librairie MSDN.

Exemple

#include <FontConstants.au3>
#include <MsgBoxConstants.au3>
#include <StructureConstants.au3>
#include <WinAPIGdi.au3>
#include <WinAPIGdiDC.au3>
#include <WinAPIHObj.au3>
#include <WinAPISysWin.au3>
#include <WindowsConstants.au3>

Global $g_tRECT, $g_hFont, $g_hOldFont, $g_hDC

HotKeySet("{ESC}", "_Exit")

$g_tRECT = DllStructCreate($tagRect)
DllStructSetData($g_tRECT, "Left", 5)
DllStructSetData($g_tRECT, "Top", 5)
DllStructSetData($g_tRECT, "Right", 250)
DllStructSetData($g_tRECT, "Bottom", 50)

$g_hDC = _WinAPI_GetDC(0)
$g_hFont = _WinAPI_CreateFont(50, 0, 0, 0, 400, False, False, False, $DEFAULT_CHARSET, _
        $OUT_DEFAULT_PRECIS, $CLIP_DEFAULT_PRECIS, $DEFAULT_QUALITY, 0, 'Arial')
$g_hOldFont = _WinAPI_SelectObject($g_hDC, $g_hFont)

_WinAPI_SetTextColor($g_hDC, 0x0000FF)
_WinAPI_SetBkColor($g_hDC, 0x000000)

MsgBox($MB_SYSTEMMODAL, "Information", "GetBkMode: " & _WinAPI_GetBkMode($g_hDC))

; Commentez la ligne suivante pour obtenir un fond noir au lieu d'un transparent
_WinAPI_SetBkMode($g_hDC, $TRANSPARENT)

MsgBox($MB_SYSTEMMODAL, "Information", "GetBkMode: " & _WinAPI_GetBkMode($g_hDC))

While $g_tRECT > 0
    _WinAPI_DrawText($g_hDC, "Hello world!", $g_tRECT, $DT_CENTER)
    Sleep(100)
WEnd

Func _Exit()
    _WinAPI_SelectObject($g_hDC, $g_hOldFont)
    _WinAPI_DeleteObject($g_hFont)
    _WinAPI_ReleaseDC(0, $g_hDC)
    _WinAPI_InvalidateRect(0, 0)
    $g_tRECT = 0
EndFunc   ;==>_Exit