如何创建滚动条
在创建重叠、弹出式或子窗口时,可以使用 CreateWindowEx 函数并指定 WS_HSCROLL、WS_VSCROLL 或两种样式来添加标准滚动条。
需要了解的事项
技术
先决条件
- C/C++
- Windows 用户界面编程
说明
创建滚动条
以下示例创建一个具有标准水平滚动条和垂直滚动条的窗口。
hwnd = CreateWindowEx(
0, // no extended styles
g_szWindowClass, // global string containing name of window class
g_szTitle, // global string containing title bar text
WS_OVERLAPPEDWINDOW |
WS_HSCROLL | WS_VSCROLL, // window styles
CW_USEDEFAULT, // default horizontal position
CW_USEDEFAULT, // default vertical position
CW_USEDEFAULT, // default width
CW_USEDEFAULT, // default height
(HWND) NULL, // no parent for overlapped windows
(HMENU) NULL, // use the window class menu
g_hInst, // global instance handle
(PVOID) NULL // pointer not needed
);
若要处理这些滚动条的滚动条消息,必须在主窗口过程中包括相应的代码。
可以使用 CreateWindowEx 函数通过指定 SCROLLBAR 窗口类来创建滚动条。 这将创建水平滚动条或垂直滚动条,具体取决于是将 SBS_HORZ 还是 SBS_VERT 指定为窗口样式。 也可以指定滚动条大小及其相对于其父窗口的位置。
以下示例创建一个水平滚动条,该滚动条位于父窗口工作区的底部。
// Description:
// Creates a horizontal scroll bar along the bottom of the parent
// window's area.
// Parameters:
// hwndParent - handle to the parent window.
// sbHeight - height, in pixels, of the scroll bar.
// Returns:
// The handle to the scroll bar.
HWND CreateAHorizontalScrollBar(HWND hwndParent, int sbHeight)
{
RECT rect;
// Get the dimensions of the parent window's client area;
if (!GetClientRect(hwndParent, &rect))
return NULL;
// Create the scroll bar.
return (CreateWindowEx(
0, // no extended styles
L"SCROLLBAR", // scroll bar control class
(PTSTR) NULL, // no window text
WS_CHILD | WS_VISIBLE // window styles
| SBS_HORZ, // horizontal scroll bar style
rect.left, // horizontal position
rect.bottom - sbHeight, // vertical position
rect.right, // width of the scroll bar
sbHeight, // height of the scroll bar
hwndParent, // handle to main window
(HMENU) NULL, // no menu
g_hInst, // instance owning this window
(PVOID) NULL // pointer not needed
));
}
相关主题