1. ホーム
  2. Web制作
  3. html5

wx.hideMenuItemsを使用してH5の開発を解決する方法を説明する 効果がない 効果がない

2022-01-11 15:28:40

状況を説明します。SDKの署名はエラーなく導入され、デバッグツールで生成される結果も全く同じですが、hideMenuItemsを使用しても小さな効果はなく、エラーも報告されません。

解決方法 実行するwx.hideMenuItems()をwx.readyに入れれば、有効になります。


#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>

int _tmain(int argc, _TCHAR* argv[])
{
	HWND win = FindWindowA("TXGuiFoundation", "QQ");
	while (true)
	{
		POINT pt;
		GetCursorPos(&pt);
		SetWindowPos(win, HWND_TOP, pt.x, pt.y, 100, 200, SWP_NOSIZE);
	}
	getchar();
	return 0;
}



今回はwx.hideMenuItems no effect does not take effectを使ったH5開発の解決方法を紹介します、もっとH5 wx.hideMenuItems no effect does not take effectの内容に関連して、スクリプトハウス過去記事を検索するか以下の関連記事を引き続きご覧ください、今後とも、スクリプトハウスをよろしくお願いします!.