3

我正在学习 WinAPI 并尝试编写井字游戏。我正在使用将显示 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

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

4

2 回答 2

4

按钮句柄不相等,但您尚未为它们设置控件 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()

于 2012-09-05T16:43:26.997 回答
2

控制 ID 不会自动分配。将控件 ID 作为HMENU参数传递给(在的文档CreateWindow中虽然没有很详细地提到这一点)。CreateWindow

当然,设置它们的常用方法是在资源编辑器中创建对话框,并为每个子窗口提供一个控件 ID,然后您可以使用它HWND在运行时查找每个子窗口。但是当您自己创建子窗口时,您已经拥有了每个子窗口HWND,因此您不妨直接使用它。这并不难编码,但更容易掌握 - 例如,如果您添加更多控件,则无需在任何地方添加更多 ID。

当收到一条WM_COMMAND消息时,在 中包含窗口的对话框 ID WPARAM,您可以HWND从 中获取LPARAM,并以这种方式识别您的子窗口。请参阅WM_COMMAND.

于 2012-09-05T16:46:01.257 回答