mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Use WS_EX_CLIENTEDGE to make the main windows look a little nicer.
svn path=/trunk/; revision=26469
This commit is contained in:
@@ -154,7 +154,7 @@ pCreateToolbar(PMAIN_WND_INFO Info)
|
||||
static BOOL
|
||||
CreateTreeView(PMAIN_WND_INFO Info)
|
||||
{
|
||||
Info->hTreeView = CreateWindowEx(0,
|
||||
Info->hTreeView = CreateWindowEx(WS_EX_CLIENTEDGE,
|
||||
WC_TREEVIEW,
|
||||
NULL,
|
||||
WS_CHILD | WS_VISIBLE | WS_BORDER | TVS_HASLINES |
|
||||
|
||||
@@ -310,7 +310,7 @@ CreateListView(PMAIN_WND_INFO Info)
|
||||
LVCOLUMN lvc = { 0 };
|
||||
TCHAR szTemp[256];
|
||||
|
||||
Info->hListView = CreateWindowEx(0,
|
||||
Info->hListView = CreateWindowEx(WS_EX_CLIENTEDGE,
|
||||
WC_LISTVIEW,
|
||||
NULL,
|
||||
WS_CHILD | WS_VISIBLE | LVS_REPORT | WS_BORDER |
|
||||
|
||||
Reference in New Issue
Block a user