We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reference: Allow for transparent / vibrant window theme Windows 10 Fluent Design / Acrylic material Adding the "Aero Glass" blur to your Windows 10 apps https://github.com/arkenthera/electron-vibrancy/blob/master/src/vibrancy_win.cc
public enum AccentState { ACCENT_DISABLED = 0, // Black and solid background ACCENT_ENABLE_GRADIENT = 1, // Custom-colored solid background ACCENT_ENABLE_TRANSPARENTGRADIENT = 2, // Custom-colored transparent background ACCENT_ENABLE_BLURBEHIND = 3, // Custom-colored and blurred transparent background ACCENT_ENABLE_FLUENT = 4, // Custom-colored Fluent effect ACCENT_INVALID_STATE = 5 // Completely transparent background }
HWND hWnd = FindWindow("Chrome_WidgetWin_1", NULL); ACCENTPOLICY policy = { 4, 2, 0xaa000000, 0 }; // ACCENT_ENABLE_FLUENT=4 WINCOMPATTRDATA data = { 19, &policy, sizeof(ACCENTPOLICY) }; // WCA_ACCENT_POLICY=19 SetWindowCompositionAttribute(hWnd, &data);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reference:
Allow for transparent / vibrant window theme
Windows 10 Fluent Design / Acrylic material
Adding the "Aero Glass" blur to your Windows 10 apps
https://github.com/arkenthera/electron-vibrancy/blob/master/src/vibrancy_win.cc
The text was updated successfully, but these errors were encountered: