10 Şubat 2019 Pazar
SetStretchBltMode metodu
GetClientRect metodu
Örnek
Şöyle yaparız
Şöyle yaparız
RECT windowsize; // get the height and width of the screen
GetClientRect(hwnd, &windowsize);
3 Şubat 2019 Pazar
CreateCompatibleDC metodu
Giriş
Açıklaması şöyle
Elimizde şöyle bir kod olsun.
Açıklaması şöyle
you can use a dedicated compatible DC for something like background bitmap manipulation and later using it as a blt-src to dump to window or client dcÖrnek
Elimizde şöyle bir kod olsun.
HDC hDC = ...
Şöyle yaparız.HDC hdcMem = CreateCompatibleDC(hDC);
// everything
DeleteDC(hdcMem)
Kaydol:
Kayıtlar (Atom)