C++ Builder XE4, 10.2 Tokyo > notepad > 他のソフトの座標を取得する > GetWindowRect()使用
4388 ワード
動作環境
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;
}
//---------------------------------------------------------------------------
- メモ帳を起動する
- キャプションは「無題 - メモ帳」であること
- 上記のソフトをデバッグモードで実行し
- int nop=1;にてブレークポイントで止める
以下のように、lpRectにleft, top, right, bottomが得られた。
Author And Source
この問題について(C++ Builder XE4, 10.2 Tokyo > notepad > 他のソフトの座標を取得する > GetWindowRect()使用), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/78f7da7eb9dc9ea14157著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .