如何更改 window 滚动条的位置?
How to change the position of a window scrollbar?
如何更改 window 的垂直滚动条的位置?
我指的是 xy 中的位置,例如 将其设置在 window 的中间而不是边缘。
您不能将 built-in 的滚动条重新定位到 window。您将必须禁用本机滚动条(删除 window 的 WS_HSCROLL
/WS_VSCROLL
样式),然后创建一个单独的 ScrollBar 控件作为 child window。然后,您可以使用 CreateWindow/Ex()
或 SetWindowPos()
.
的 x
/y
参数将 child 放置在任意位置
如何更改 window 的垂直滚动条的位置?
我指的是 xy 中的位置,例如 将其设置在 window 的中间而不是边缘。
您不能将 built-in 的滚动条重新定位到 window。您将必须禁用本机滚动条(删除 window 的 WS_HSCROLL
/WS_VSCROLL
样式),然后创建一个单独的 ScrollBar 控件作为 child window。然后,您可以使用 CreateWindow/Ex()
或 SetWindowPos()
.
x
/y
参数将 child 放置在任意位置