You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, comrades. I am trying to implement transparent ComboLBox in this project. I almost got the result, but there is one catch. I can't draw text using the DrawTextWithAlpha function (which replaces the DrawTextW function in this project), instead of the ExtTextOutW function, it is not drawn. I install the interceptor on winapi ExtTextOutW using the Detours library, draw DrawTextWithAlpha and there is no text. It turns out to draw the text only in those comboboxes that are drawn in WM_DRAWITEM, others are not. If it had been possible to draw text in the DrawTextWithAlpha, then the problem would have been solved. Why doesn't the DrawTextWithAlpha function draw in the body of the ExtTextOutW function, can someone give some advice?
The text was updated successfully, but these errors were encountered:
I have already solved the problem myself. I just connected the wrong module. Basically everything, ComboLBox's are now transparent in light and dark themes.
Hello, comrades. I am trying to implement transparent ComboLBox in this project. I almost got the result, but there is one catch. I can't draw text using the DrawTextWithAlpha function (which replaces the DrawTextW function in this project), instead of the ExtTextOutW function, it is not drawn. I install the interceptor on winapi ExtTextOutW using the Detours library, draw DrawTextWithAlpha and there is no text. It turns out to draw the text only in those comboboxes that are drawn in WM_DRAWITEM, others are not. If it had been possible to draw text in the DrawTextWithAlpha, then the problem would have been solved. Why doesn't the DrawTextWithAlpha function draw in the body of the ExtTextOutW function, can someone give some advice?
The text was updated successfully, but these errors were encountered: