GetOpenFileName 函数没有打开对话框

San*_*ini 1 c++ winapi win32gui

所以我有这个简单的代码,因为我是 win32 的新手,所以不要指望我编写非常困难的代码,但是,这是我的 winProc

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message)                  /* handle the messages */
    {
        case WM_DESTROY: PostQuitMessage (0); break;
        case WM_CREATE : make_controls(hwnd); break;
        case WM_COMMAND: handle_commands(hwnd, wParam, lParam); break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }

    return 0;
} 
Run Code Online (Sandbox Code Playgroud)

这是handle_commands功能

void handle_commands(HWND hwnd, WPARAM wp, LPARAM lp){
    if( HIWORD(wp) == BN_CLICKED && LOWORD(wp) == openBtn ){
// openBtn is the only button in the whole application 
        OPENFILENAME ofn;       // common dialog box structure
        char szFile[260];       // buffer for file name
        HWND hwnd;              // owner window
        HANDLE hf;              // file handle

// Initialize OPENFILENAME
        ZeroMemory(&ofn, sizeof(ofn));
        ofn.lStructSize = sizeof(ofn);
        ofn.hwndOwner = hwnd;
        ofn.lpstrFile = szFile;
// Set lpstrFile[0] to '\0' so that GetOpenFileName does not
// use the contents of szFile to initialize itself.
        ofn.lpstrFile[0] = '\0';
        ofn.nMaxFile = sizeof(szFile);
        ofn.lpstrFilter = "All\0*.*\0Text\0*.TXT\0";
        ofn.nFilterIndex = 1;
        ofn.lpstrFileTitle = NULL;
        ofn.nMaxFileTitle = 0;
        ofn.lpstrInitialDir = NULL;
        ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;

// Display the Open dialog box.

        if (GetOpenFileName(&ofn)==TRUE)
            hf = CreateFile(ofn.lpstrFile,
                            GENERIC_READ,
                            0,
                            (LPSECURITY_ATTRIBUTES) NULL,
                            OPEN_EXISTING,
                            FILE_ATTRIBUTE_NORMAL,
                            (HANDLE) NULL);
    }
}// this is the end of the handle_commands functions
Run Code Online (Sandbox Code Playgroud)

但问题是它没有打开任何对话框

据我所知,互联网上的人成功地使用相同的代码打开。

是的!我已经包含了 commdlg.h 和相应的库

提前致谢!

San*_*ini 5

所以问题是,在handle_commands,hwnd已经改变了。这意味着该OPENFILENAME结构不知道其正确的所有者,因此,尽管单击按钮会触发正确的代码,但它仍然没有打开对话框。

所以只需注释掉函数中的HWND hwndhandle_commands