Win32 Splitter Control

前端 未结 4 924
旧巷少年郎
旧巷少年郎 2021-01-14 04:19

Of all the different controls that there are for Win32, is there any basic, lightweight Splitter/Splitcontainer control available (meaning one or two C/C++ files

4条回答
  •  再見小時候
    2021-01-14 04:43

    No there is no native win32 splitter, you have to use a framework or write your own. Codeproject even has its own splitter category.

    If you write your own you basically have two options:

    • The parent of window A and B is the splitter (The splitter border comes from WS_EX_CLIENTEDGE on windows A and B)
    • A and B are separated by a third window; the splitter

提交回复
热议问题