mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +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:
parent
eb55201ce5
commit
b25aaa3d59
2 changed files with 2 additions and 2 deletions
|
@ -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 |
|
||||
|
|
Loading…
Reference in a new issue