gpt4 book ai didi

c++ - HWND动态数组中的相同ID

转载 作者:太空狗 更新时间:2023-10-29 20:28:47 24 4
gpt4 key购买 nike

我正在学习 WinAPI 并尝试编写 Tic Tac Toe 游戏。我正在使用其中将显示 X、O 或空图像的按钮。存储在动态数组 (HWND) 中的按钮。为什么所有这些按钮都具有相同的 ID?

if(GetDlgCtrlID(hBtns[0][0]) == GetDlgCtrlID(hBtns[0][1]))
MessageBox(hWndDlg,_T("TheSame"),_T(""),NULL);

MessageBox 出现了!,为什么。请帮忙。

//KA_SHAG
//Miwa_Mikitin
//XXXOOO
#include<windows.h>
#include<tchar.h>
#include"resource.h"

//Main Proc
BOOL CALLBACK DialogProc(HWND hWndDlg,UINT message,WPARAM wParam,LPARAM lParam);
//EnumChildProc
BOOL CALLBACK DisableEnableButtons(HWND hwnd,LPARAM lParam);

HWND** hBtns;//Global Dynamic Array of Buttons
int size = 150;//Size of Side of field, Button Size = size/nButtons

//BITMAPS
HBITMAP hBmpX,hBmpO,hBmpNone;
/////////

void CreateButtons(HWND hWndDlg,int nBtnsOld,int nBtnsNew);
void LoadBitmaps();


INT WINAPI WinMain(HINSTANCE hIns,HINSTANCE hPrevIns,LPSTR cmdLine,INT nShowCmd)
{
HWND hWndDlg = CreateDialog(hIns,MAKEINTRESOURCE(IDD_DIALOG1),NULL,DialogProc);

MSG msg;
ShowWindow(hWndDlg,1);

while(GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}

return msg.wParam;
}

BOOL CALLBACK DialogProc(HWND hWndDlg,UINT message,WPARAM wParam,LPARAM lParam)
{
HINSTANCE hIns = GetModuleHandle(0);
static int nBtnsOld = 5;//intitial N of Buttons on a row|col
static int nBtnsNew;//next update N of Buttons on a row|col
static BOOL isPlaying = false;
static BOOL isMyMove = true;

switch(message)
{
case WM_INITDIALOG:
{
LoadBitmaps();
CreateButtons(hWndDlg,nBtnsOld,nBtnsOld);
}
return true;

case WM_COMMAND:
if(HIWORD(wParam) == BN_CLICKED)
{
//Resize the Button field
if(LOWORD(wParam) == IDC_BTNSETSIZE)
{
//Determine wich RadioBtn is Checked
if(IsDlgButtonChecked(hWndDlg,IDC_RADIO33))
nBtnsNew = 3;//set new nBtns
if(IsDlgButtonChecked(hWndDlg,IDC_RADIO44))
nBtnsNew = 4;//set new nBtns
if(IsDlgButtonChecked(hWndDlg,IDC_RADIO55))
nBtnsNew = 5;//set new nBtns
///////////////////////////////////////////
//If no difference than ignore
//else Create new Array of Btns
if(nBtnsOld != nBtnsNew)
{
CreateButtons(hWndDlg,nBtnsOld,nBtnsNew);
nBtnsOld = nBtnsNew;
}
/////////////////////////////////////////
return true;
}
if(LOWORD(wParam) == IDC_BTNBEGIN)
{
//Enum Buttons,CheckBox,RadioBtns
//then Disable or Enable them depending on isPlaying var
//if TRUE - ENABLE
//else Disable
EnumChildWindows(hWndDlg,DisableEnableButtons,isPlaying);
//switch isPlaying )
isPlaying = !isPlaying;
//switch begin Button Text
if(isPlaying)
SetWindowText(GetDlgItem(hWndDlg,IDC_BTNBEGIN),_T("Закінчити гру"));
else
SetWindowText(GetDlgItem(hWndDlg,IDC_BTNBEGIN),_T("Почати гру"));
/////////////////////////////////////////////////////////////////////
return true;
}
//When Playing
if(isPlaying)
{
//Determine HWND of Pressed Btn
HWND pressedBtn = GetDlgItem(hWndDlg,LOWORD(wParam));
HBITMAP propBmp;
if(isMyMove)
propBmp = hBmpX;
else
propBmp = hBmpO;
//Change BMP
SendMessage(pressedBtn,
BM_SETIMAGE,IMAGE_BITMAP,
(LPARAM)propBmp);
//WHY???
if(GetDlgCtrlID(hBtns[0][0]) == GetDlgCtrlID(hBtns[0][1]))
MessageBox(hWndDlg,_T("TheSame"),_T(""),NULL);

return true;
}
}
return true;
case WM_CLOSE:
DestroyWindow(hWndDlg);
PostQuitMessage(0);
return TRUE;
}

return FALSE;
}

void CreateButtons(HWND hWndDlg,int nBtnsOld,int nBtnsNew)
{

HINSTANCE hIns = GetModuleHandle(0);//main instance

//Destroy Buttons
if(hBtns)
{
for(int i=0;i<nBtnsOld;i++)
for(int j=0;j<nBtnsOld;j++)
DestroyWindow(hBtns[i][j]);
////////////////////////////////
//Free memory
for(int n=0;n<nBtnsOld;n++)
delete[]hBtns[n];
delete[]hBtns;
}
/////////////////////////////////
//Allocate new memory
hBtns = new HWND*[nBtnsNew];
for(int n=0;n<nBtnsNew;n++)
hBtns[n] = new HWND[nBtnsNew];
////////////////////////////////
int x =0;//offset x
int y =0;//offset y
//tchar[] for diff name s of btns

//Create Buttons & assign to hBtns Array
for(int i=0;i<nBtnsNew;i++)
{
for(int j=0;j<nBtnsNew;j++)
{

hBtns[i][j] = CreateWindowEx(
NULL,_T("Button"),
NULL,
WS_CHILD | WS_VISIBLE | BS_BITMAP | BS_NOTIFY ,
x,y,size/nBtnsNew,size/nBtnsNew,
hWndDlg,NULL,
hIns,NULL);
//Set Default Image On Btns
SendMessage(hBtns[i][j],BM_SETIMAGE,IMAGE_BITMAP,(LPARAM)hBmpNone);

x+=size/nBtnsNew;

}
y+=size/nBtnsNew;
x=0;
}
}

BOOL CALLBACK DisableEnableButtons(HWND hwnd,LPARAM lParam)
{
//Lparam is a BOOL if true Button will be Enabled
//else Buttons will be Disabled
if( GetDlgCtrlID(hwnd) == IDC_RADIO33 ||
GetDlgCtrlID(hwnd) == IDC_RADIO44 ||
GetDlgCtrlID(hwnd) == IDC_RADIO55 ||
GetDlgCtrlID(hwnd) == IDC_CHECKMOVE ||
GetDlgCtrlID(hwnd) == IDC_BTNSETSIZE)
EnableWindow(hwnd,lParam);//<---lParam is BOOL

return TRUE;
}

//BOOL CALLBACK DrawBmpOnBtn(HWND hwnd,LPARAM lParam)
//{
//
// SendMessage(hwnd,BM_SETIMAGE,
// return TRUE;
//}

void LoadBitmaps()
{
HINSTANCE hIns = GetModuleHandle(0);//main instance

hBmpX = LoadBitmap(hIns,MAKEINTRESOURCE(IDB_BMP_X));
hBmpO = LoadBitmap(hIns,MAKEINTRESOURCE(IDB_BMP_O));
hBmpNone = LoadBitmap(hIns,MAKEINTRESOURCE(IDB_BMP_NONE));
}

项目(VS2008) 在这里:http://www.filehosting.org/file/details/372626/XXXOOO.rar

P.S. 执行程序时 - 下方的按钮允许绘制蓝色按钮,上方的按钮设置蓝色按钮的数量,但检查一些 radioBtn。

最佳答案

按钮句柄不相等,但您还没有为它们设置控件 ID。您可以通过将以下内容添加到对 CreateWindowEx 的调用中来执行此操作:

hBtns[i][j] = CreateWindowEx(
NULL, _T("Button"),
NULL,
WS_CHILD | WS_VISIBLE | BS_BITMAP | BS_NOTIFY,
x, y, size/nBtnsNew, size/nBtnsNew,
hWndDlg,
(HMENU)<your_control_id>,
hIns, NULL);

您将不得不替换 <your_control_id>为每个按钮分配一个唯一的 ID。

我的猜测是 GetDlgCtrlID()调用失败,因此返回 0。阅读更多关于 GetDlgCtrlID() 的信息和 CreateWindowEx()

关于c++ - HWND动态数组中的相同ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12285945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com