简体   繁体   English

无法将缩略图按钮添加到窗口?

[英]Unable to add thumbnail buttons to a window?

I'm trying to add thumbnail buttons to a window, but there is no error and no thumbnail button is shown. 我正在尝试将缩略图按钮添加到窗口,但是没有错误,也没有显示缩略图按钮。 I read the following pages for reference: 我阅读了以下页面以供参考:

  1. Your First Windows Program ; 您的第一个Windows程序 ;

  2. ITaskbarList3::ThumbBarAddButtons method ; ITaskbarList3 :: ThumbBarAddButtons方法

  3. some code on github . github上的一些代码

Environment: win10 64bit, vs2015 环境:Win10 64bit,vs2015

// function WindowProc and wWinMain are copied from msdn directly.

#include "stdafx.h"
#include <windows.h>
#include "shobjidl.h" 
#include <exception>


LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);

HRESULT addThumbnailButtons(HWND hwnd) {
    HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
    if (SUCCEEDED(hr)) {
        ITaskbarList4* ptbl = nullptr;
        HRESULT hr = CoCreateInstance(CLSID_TaskbarList, NULL, CLSCTX_INPROC_SERVER,
            IID_PPV_ARGS(&ptbl));

        if (SUCCEEDED(hr)) {
            // create 2 buttons
            THUMBBUTTON thmb[2] = {};

            thmb[0].dwMask = THB_TOOLTIP;
            thmb[0].iId = 0;
            wcscpy_s(thmb[0].szTip, L"Button 1");

            thmb[1].dwMask = THB_TOOLTIP;
            thmb[1].iId = 1;
            wcscpy_s(thmb[1].szTip, L"Button 2");

            //ptbl->HrInit();
            hr = ptbl->ThumbBarAddButtons(hwnd, ARRAYSIZE(thmb), thmb);

            ptbl->Release();

            return hr;
        }
        else {
            throw std::exception("createInstance failed");
        }
    }else{
        throw std::exception("coinitialize failed");
    }
}

int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow)
{
    // Register the window class.
    const wchar_t CLASS_NAME[] = L"Sample Window Class";

    WNDCLASS wc = {};

    wc.lpfnWndProc = WindowProc;
    wc.hInstance = hInstance;
    wc.lpszClassName = CLASS_NAME;

    RegisterClass(&wc);

    // Create the window.

    HWND hwnd = CreateWindowEx(
        0,                              // Optional window styles.
        CLASS_NAME,                     // Window class
        L"Learn to Program Windows",    // Window text
        WS_OVERLAPPEDWINDOW,            // Window style

                                        // Size and position
        CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,

        NULL,       // Parent window    
        NULL,       // Menu
        hInstance,  // Instance handle
        NULL        // Additional application data
    );

    if (hwnd == NULL)
    {
        return 0;
    }

    HRESULT hr = addThumbnailButtons(hwnd);
    if (FAILED(hr)) {
        throw std::exception("addbuttons failed");
    }

    ShowWindow(hwnd, nCmdShow);

    // Run the message loop.

    MSG msg = {};
    while (GetMessage(&msg, NULL, 0, 0))
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }

    return 0;
}

LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    switch (uMsg)
    {
    case WM_DESTROY:
        PostQuitMessage(0);
        return 0;

    case WM_PAINT:
    {
        PAINTSTRUCT ps;
        HDC hdc = BeginPaint(hwnd, &ps);

        FillRect(hdc, &ps.rcPaint, (HBRUSH)(COLOR_WINDOW + 1));

        EndPaint(hwnd, &ps);
    }
    return 0;

    }
    return DefWindowProc(hwnd, uMsg, wParam, lParam);
}

Per the ITaskBarList3 documentation: 根据ITaskBarList3文档:

When an application displays a window, its taskbar button is created by the system. 当应用程序显示窗口时,其任务栏按钮由系统创建。 When the button is in place, the taskbar sends a TaskbarButtonCreated message to the window. 当按钮就位时,任务栏将TaskbarButtonCreated消息发送到窗口。 Your application should call RegisterWindowMessage(L"TaskbarButtonCreated") and handle that message in its wndproc. 您的应用程序应调用RegisterWindowMessage(L"TaskbarButtonCreated")并在其RegisterWindowMessage(L"TaskbarButtonCreated")处理该消息。 That message must be received by your application before it calls any ITaskbarList3 method . 在调用任何ITaskbarList3方法之前,该消息必须由您的应用程序接收

You must wait for that message before calling addThumbnailButtons() , eg: 在调用addThumbnailButtons()之前,您必须等待该消息,例如:

UINT uMsgTaskbarCreated;

int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow)
{
    uMsgTaskbarCreated = RegisterWindowMessage(L"TaskbarButtonCreated");

    // Register the window class.
    const wchar_t CLASS_NAME[] = L"Sample Window Class";

    WNDCLASS wc = {};

    wc.lpfnWndProc = WindowProc;
    wc.hInstance = hInstance;
    wc.lpszClassName = CLASS_NAME;

    RegisterClass(&wc);

    // Create the window.

    HWND hwnd = CreateWindowEx(
        0,                              // Optional window styles.
        CLASS_NAME,                     // Window class
        L"Learn to Program Windows",    // Window text
        WS_OVERLAPPEDWINDOW,            // Window style

                                        // Size and position
        CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,

        NULL,       // Parent window    
        NULL,       // Menu
        hInstance,  // Instance handle
        NULL        // Additional application data
    );

    if (hwnd == NULL)
    {
        return 0;
    }

    ShowWindow(hwnd, nCmdShow);

    // Run the message loop.

    MSG msg = {};
    while (GetMessage(&msg, NULL, 0, 0))
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }

    return 0;
}

LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    switch (uMsg)
    {
        case WM_DESTROY:
            PostQuitMessage(0);
            return 0;

        case WM_PAINT:
        {
            PAINTSTRUCT ps;
            HDC hdc = BeginPaint(hwnd, &ps);

            FillRect(hdc, &ps.rcPaint, (HBRUSH)(COLOR_WINDOW + 1));

            EndPaint(hwnd, &ps);
            return 0;
        }

        default:
            if ((uMsg == uMsgTaskbarCreated) && (uMsgTaskbarCreated != 0))
            {
                HRESULT hr = addThumbnailButtons(hwnd);
                if (FAILED(hr)) {
                    ...;
                }
            }
            break;
        }

    return DefWindowProc(hwnd, uMsg, wParam, lParam);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM