C++ Builder XE4, 10.2 Tokyo > notepad > 다른 소프트웨어의 좌표 가져오기 > GetWindowRect() 사용
4149 단어 cppBuilder#migratedappOperation
C++ Builder XE4
Windnows 7 pro (32bit)
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)
다른 소프트의 좌표를 취득한다.
메모장을 대상 소프트웨어로 구현했다.
참고 C#에서의 구현 예 @stackoverflow
참고 GetWindowRect@MSDN
참고 Delphi의 구현 예 @stackoverflow
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
String fullCaption = L"無題 - メモ帳";
HWND appHwnd;
appHwnd = FindWindowEx(NULL, NULL, NULL, fullCaption.c_str());
if (appHwnd == NULL) {
return;
}
SetForegroundWindow(appHwnd); // 前面に映す
TRect lpRect;
GetWindowRect(appHwnd, &lpRect);
int nop=1;
}
//---------------------------------------------------------------------------
다음과 같이 lpRect에 left, top, right, bottom을 얻었다.
Reference
이 문제에 관하여(C++ Builder XE4, 10.2 Tokyo > notepad > 다른 소프트웨어의 좌표 가져오기 > GetWindowRect() 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/78f7da7eb9dc9ea14157텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)