我有以下目标:创建一个 windows 按钮,a)单击时切换其标签并将正在运行的 windows 应用程序(例如计算器)强制执行到前面,b)随后单击时将其标签更改回原始状态并强制第二个 Windows 应用程序(例如,记事本)放在前面。这种切换应该可以无限次继续(直到用户中止)。
注意:我使用的是 MS Visual Studio。
到目前为止我所拥有的(基于各种其他线程构建):
1) 成功运行的 WindowsFormApplication 提供了一个按钮,单击该按钮可将其标签从“计算器”切换为“记事本”,反之亦然。
2) 成功找到正在运行的 Calucalor 应用程序并将其强制执行到前面的 Win32 控制台应用程序。
1) 的代码
ButtonSwitchApplication.cpp
// ButtonSwitchApplication.cpp : main project file.
#include "Form1.h"
#include <windows.h>
using namespace ButtonSwitchApplication;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
//HelloWorld();
// Enabling Windows XP visual effects before any controls are created
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
// Create the main window and run it
Application::Run(gcnew Form1());
return 0;
}
表格1.h
#pragma once
#include <windows.h>
namespace ButtonSwitchApplication {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Summary for Form1
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}
protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Button^ button1;
protected:
private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->button1 = (gcnew System::Windows::Forms::Button());
this->SuspendLayout();
//
// button1
//
this->button1->Location = System::Drawing::Point(26, 45);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(232, 53);
this->button1->TabIndex = 0;
this->button1->Text = L"INFO"; // initializes the button label with "INFO"
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// Form1
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(284, 261);
this->Controls->Add(this->button1);
this->Name = L"Form1";
this->Text = L"Form1";
this->ResumeLayout(false);
}
#pragma endregion
private: System::Void Form1::button1_Click(System::Object^ sender, System::EventArgs^ e) {
static bool isInfo = true;
if(isInfo == false)
{
button1->Text = "Calculator";
} // end if (isInfo)
else
{
button1->Text = "Notepad";
} // end else
isInfo = !isInfo;
} // end private button1_Click
};
}
2) 的代码
源.cpp
#include <iostream> // need this header file to support the C++ I/O system
#include <windows.h>
using namespace std; // telling the compiler to use namespace "std",
// where the entire C++ library is declared.
int main()
{
// This code is searching for a running application
// Retrieves a handle to the top-level window whose class name and window name match the specified strings.
// This function does not search child windows.
// This function does not perform a case-sensitive search.
HWND hwnd1 = FindWindow(NULL,TEXT("Calculator"));
HWND hwnd2 = FindWindow(NULL,TEXT("Notepad"));
// used temporarily to decide which window to search for
int MyTemp = 0;
if (MyTemp == 0) {
SetForegroundWindow(hwnd1);
cout << " Found Calculator!" << endl;
cout << hwnd1 << endl;
getchar();
} // end if
else if (MyTemp == 1) {
SetForegroundWindow(hwnd2);
cout << " Found Notepad!" << endl;
cout << hwnd2 << endl;
getchar();
} // end else if
else {
cout << " Did not find the application window!" << endl;
cout << hwnd1 << endl;
getchar();
}
}
我没有成功将 1) 和 2) 两者结合在一起以实现上述目标。
我试图包括
HWND hwnd = FindWindow(NULL,TEXT("Calculator"));
SetForegroundWindow(hwnd);
MessageBox::Show("Found Calculator!");
紧接着
button1->Text = "Calculator";
在 Form1.h 中,但我收到如下错误:
1> ButtonSwitchApplication.cpp
1>ButtonSwitchApplication.obj : error LNK2028: unresolved token (0A000019) "extern "C" int __stdcall SetForegroundWindow(struct HWND__ *)" [...]
1>ButtonSwitchApplication.obj : error LNK2028: unresolved token (0A00001E) "extern "C" struct HWND__ * __stdcall FindWindowW(wchar_t const [...]
1>ButtonSwitchApplication.obj : error LNK2019: unresolved external symbol "extern "C" struct HWND__ * __stdcall FindWindowW(wchar_t const [...]
1>ButtonSwitchApplication.obj : error LNK2019: unresolved external symbol "extern "C" int __stdcall SetForegroundWindow(struct HWND__ *)" [...]
非常感谢任何有关如何实现目标的帮助。谢谢!
最好的,迈克尔。