ShowWindow替代品

时间:2012-10-16 11:26:12

标签: c++ window terminate showwindow

显然,当主窗口被隐藏(“最小化到托盘”)时,我无法终止给定的进程。所以我尝试在其他进程的FormClosing处理程序中再次显示窗口。也没用。

现在我想使用ShowWindow

IntPtr Handle = Gateway->MainWindowHandle;
ShowWindow((HWND)Handle.ToPointer(), SW_SHOWDEFAULT);

不幸产生了

error LNK2028: Nicht aufgelöstes Token (0A000072) ""extern "C" int __stdcall ShowWindow(struct HWND__ *,int)" (?ShowWindow@@$$J18YGHPAUHWND__@@H@Z)", auf das in Funktion ""private: void __clrcall lidarctrl::Form1::Form1_FormClosing(class System::Object ^,class System::Windows::Forms::FormClosingEventArgs ^)" (?Form1_FormClosing@Form1@lidarctrl@@$$FA$AAMXP$AAVObject@System@@P$AAVFormClosingEventArgs@Forms@Windows@4@@Z)" verwiesen wird.
error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""extern "C" int __stdcall ShowWindow(struct HWND__ *,int)" (?ShowWindow@@$$J18YGHPAUHWND__@@H@Z)" in Funktion ""private: void __clrcall lidarctrl::Form1::Form1_FormClosing(class System::Object ^,class System::Windows::Forms::FormClosingEventArgs ^)" (?Form1_FormClosing@Form1@lidarctrl@@$$FA$AAMXP$AAVObject@System@@P$AAVFormClosingEventArgs@Forms@Windows@4@@Z)".

抱歉 - 德国错误;不知道如何更改编译器的语言环境。

Non resolved Token...in function...referenced by...

Reference to non-resolved extern symbol...in function...

我感谢任何关于要包含哪个标头的提示,要加载的库。

我正在使用Microsoft Visual C ++ 2010 Express;该项目是一个普通的Windows窗体应用程序。

谢谢!

2 个答案:

答案 0 :(得分:1)

在从标准Windows窗体应用程序模板创建的项目中,没有链接的标准/默认库通常包含在本机项目中。您需要在项目设置或代码中明确添加它们。如果您添加<windows.h>,请添加#pragma,如下所示:

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#pragma comment(lib, "user32.lib") // <<--- Add Me

这会链接您遗失的ShowWindow

答案 1 :(得分:0)

你可能没有使用C ++和Win32。然后你会写

#include <windows.h>
//...
{
  //...
  HWND Handle = Gateway->MainWindowHandle; // Gateway probably is your class.
  ShowWindow(Handle, SW_SHOWDEFAULT);
}