CfileDialog获得内嵌控件的指针

1、获得内嵌的CFiledialog的控件,他们的ID如下:

   

Open Button

1

Cancel Button

2

file name(Edit Combo) 

1152

folder(Combo)

1137

read only(Label)

1040

file extension(Combo)

1136

FolderView(ListView)

1

ToolBar

1088

我们这样获得对应的控件:

     CWnd *pwnd=GetParent()->GetDlgItem(1136);//file extension(Combo)

      pwnd->GetWindowText(str); 

你可能感兴趣的:(ListView)