[idd] helper: add CListBox widget

This commit is contained in:
Quantum
2025-09-22 01:55:51 -04:00
committed by Geoffrey McRae
parent c99f516b29
commit 96367e83f1
6 changed files with 52 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
#include "CWidget.h"
HWND CWidget::createWindowSimple(LPCWSTR cls, LPCWSTR title, DWORD style, HWND parent)
HWND CWidget::createWindowSimple(LPCWSTR cls, LPCWSTR title, DWORD style, HWND parent, DWORD dwExStyle)
{
return CreateWindow(cls, title, style, 0, 0, 0, 0, parent,
return CreateWindowEx(dwExStyle, cls, title, style, 0, 0, 0, 0, parent,
NULL, (HINSTANCE)GetModuleHandle(NULL), NULL);
}