-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
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
Unable to hide the top title bar #61
Comments
Modify static unsigned int __stdcall lv_windows_display_thread_entrypoint(
void * parameter)
{
lv_windows_create_display_data_t * data = parameter;
LV_ASSERT_NULL(data);
//DWORD window_style = WS_OVERLAPPEDWINDOW;
DWORD window_style = WS_POPUP;
...
} |
static unsigned int __stdcall lv_windows_display_thread_entrypoint(
void * parameter)
{
lv_windows_create_display_data_t * data = parameter;
LV_ASSERT_NULL(data);
//DWORD window_style = WS_OVERLAPPEDWINDOW;
DWORD window_style = WS_POPUPWINDOW;
if(data->simulator_mode) {
window_style &= ~(WS_SIZEBOX | WS_MAXIMIZEBOX | WS_THICKFRAME);
}
HWND window_handle = CreateWindowExW(
WS_EX_LEFT,
...
} |
Sir that white border still visible in all side .Help me to remove it |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using codeblocks . I want to hide this in the .exe file that is generated by the code blocks.
Please help me in creating full screen mode.
@kisvegabor @YobeZhou @100ask
The text was updated successfully, but these errors were encountered: