Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
HWND subWindow = FindWindow(NULL, TEXT("Profile Setting"));
pixelX = 445;
pixelY = 445;
SetForegroundWindow(subWindow);
HDC hdc = GetDC(subWindow);
COLORREF color = GetPixel(hdc, pixelX, pixelY);
BYTE redValue, greenValue, blueValue;
redValue = GetRValue(color);
greenValue = GetGValue(color);
blueValue = GetBValue(color);
cout<<"\nRed: "<<(int)redValue<<endl;
cout<<"Green: "<<(int)greenValue<<endl;
cout<<"Blue: "<<(int)blueValue<<endl;
HWND subWindow = FindWindow(NULL, TEXT("Profile Setting"));
int pixelX = 445;
int pixelY = 445;
SetForegroundWindow(subWindow);
HDC hdc = GetDC(subWindow);
COLORREF color = GetPixel(hdc, pixelX, pixelY);
BYTE redValue, greenValue, blueValue;
redValue = GetRValue(color);
greenValue = GetGValue(color);
blueValue = GetBValue(color);
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.