我用我的位图图像创建工具栏,我的按钮大小有问题 此图片大小为20/20像素。
我创建了一个工具栏,并通过以下代码将按钮大小设置为20/20像素:
SendMessage(hToolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(20, 20));
我将颜色方案设置为红色和绿色,因此当光标站在按钮上时,按钮框将清晰显示。
这就是当光标站在按钮上时我看到的内容:
正如您所看到的,按钮大小不是20 \ 20像素,而是26像素。为什么会这样?
另外一个问题是,当鼠标光标悬停在它上面时,是否可以取消突出显示按钮,而是我将设置热图像列表(通过TB_SETHOTIMAGELIST
消息),所以当光标将站在按钮,将显示热图像,而不突出显示按钮。
这是完整的代码:
#include <windows.h>
#include <stdlib.h>
#include <CommCtrl.h>
#pragma comment(lib, "comctl32.lib")
#define IDB_PRINT 40000
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
HINSTANCE instance;
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
instance = hInstance;
WNDCLASSEX wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = NULL;
wcex.lpszClassName = L"Example";
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
RegisterClassEx(&wcex);
HWND hWnd = CreateWindow(L"Example", L"", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT,
500, 500, NULL, NULL, hInstance, NULL);
// Initialize common controls.
INITCOMMONCONTROLSEX icex;
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
icex.dwICC = ICC_COOL_CLASSES | ICC_BAR_CLASSES;
InitCommonControlsEx(&icex);
// create toolbar
HWND hToolbar = CreateWindowExW(WS_EX_TOOLWINDOW | TBSTYLE_EX_HIDECLIPPEDBUTTONS, TOOLBARCLASSNAME, NULL, CCS_NODIVIDER | WS_CHILD | WS_VISIBLE | CCS_ADJUSTABLE | TBSTYLE_ALTDRAG | TBSTYLE_FLAT | TBSTYLE_TOOLTIPS,
0, 0, 0, 0, hWnd, (HMENU)0, instance, NULL);
SendMessage(hToolbar, TB_SETMAXTEXTROWS, 0, 0);
// create image list
HIMAGELIST hImageList = ImageList_Create(20,20, ILC_COLORDDB, 4, 0);
ImageList_Add(hImageList, LoadBitmap(instance, MAKEINTRESOURCEW(IDB_PRINT)), NULL);
// set the image list
SendMessage(hToolbar, TB_SETIMAGELIST, (WPARAM)0, (LPARAM)hImageList);
SendMessage(hToolbar, TB_BUTTONSTRUCTSIZE, (WPARAM)sizeof(TBBUTTON), 0);
// create button
TBBUTTON tbb[1] =
{
{0, 0, TBSTATE_ENABLED, BTNS_AUTOSIZE, {0}, 0, (INT_PTR)L"Print"},
};
// add button to the toolbar
SendMessage(hToolbar, (UINT)TB_ADDBUTTONS, 1, (LPARAM)&tbb);
SendMessage(hToolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(20, 20));
SendMessage(hToolbar, TB_AUTOSIZE, 0, 0);
// set color scheme to blue
COLORSCHEME cs;
cs.dwSize = sizeof(cs);
cs.clrBtnShadow = RGB(255, 0, 0);
cs.clrBtnHighlight = RGB(0, 255, 0);
SendMessage(hToolbar, TB_SETCOLORSCHEME, 0, (LPARAM)&cs);
// show the toolbar
ShowWindow(hToolbar , SW_SHOW);
// show the main window
ShowWindow(hWnd, nCmdShow);
MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return (int) msg.wParam;
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_CREATE:
return 0;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
}
答案 0 :(得分:2)
Windows在位图周围添加了填充。您可以通过编程方式检测控件的TB_GETPADDING消息的大小。在我的工具栏创建中,我做了类似这样的事情:
// By default Windows creates the tiles as 22x23, minus the padding area of 6x7, for a bitmap size of 16x16.
DWORD iSize = SendMessage(hTool, TB_GETBUTTONSIZE, 0, 0);
DWORD iPadSize = SendMessage(hTool, TB_GETPADDING, 0, 0);
// Build our bitmap
int xsize=LOWORD(iSize) - LOWORD(iPadSize); // width
int ysize=HIWORD(iSize) - HIWORD(iPadSize); // height
您可以使用TB_SETBUTTONSIZE设置自己的位图大小,但仍需要允许填充。