本文整理汇总了C++中JumpList::SetUpJumpList方法的典型用法代码示例。如果您正苦于以下问题:C++ JumpList::SetUpJumpList方法的具体用法?C++ JumpList::SetUpJumpList怎么用?C++ JumpList::SetUpJumpList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JumpList
的用法示例。
在下文中一共展示了JumpList::SetUpJumpList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: InitMainWindowInstance
//
// FUNCTION: InitMainWindowInstance(HINSTANCE, int)
//
// PURPOSE: Saves instance handle and creates main window
//
// COMMENTS:
//
// In this function, we save the instance handle in a global variable and
// create and display the main program window.
//
HWND InitMainWindowInstance(
HINSTANCE hInstance,
int nCmdShow,
PTCHAR szWindowClass,
PTCHAR szTitle)
{
hInst = hInstance; // Store instance handle in our global variable
beginMainWindowCreationTime.Now();
// Should make window size be data driven
mainWindowHandle = CreateWindowEx(WS_EX_OVERLAPPEDWINDOW | WS_EX_CLIENTEDGE,
szWindowClass, szTitle,
WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN,
CW_USEDEFAULT, CW_USEDEFAULT,
// WS_POPUP, CW_USEDEFAULT, 0,
DEFAULT_WIN_WIDTH, DEFAULT_WIN_HEIGHT,
NULL, NULL,
hInstance, NULL);
if (mainWindowHandle)
{
if (!devMode)
{
jumpList.SetUpJumpList(hInst);
}
}
return mainWindowHandle;
}