MFC 如何将一个对话框的内容添加到另外一个对话框的列表控件里
发布网友
发布时间:2022-04-24 14:06
我来回答
共4个回答
热心网友
时间:2023-10-15 16:23
改用非模态对话框
C/C++ code
CChange *pchangedlg = new CChange;
if (pchangedlg->Create(你修改对话框ID, this))
{
pchangedlg->ShowWindow(SW_SHOW); //显示修改对话框
UpdateData();
int nIndex=m_Listbx.GetCurSel();
if (nIndex!=LB_ERR)
{
student * pstudent=(student *)m_Listbx.GetItemDataPtr(nIndex);
pchangedlg->m_ChgeName=pstudent->name;
pchangedlg->m_ChgeSubject=pstudent->subject;
pchangedlg->m_ChgeId=pstudent->studentid;
pchangedlg->m_ChgeClass=pstudent->studentclass;
}
UpdateData(FALSE);
}
热心网友
时间:2023-10-15 16:23
把另外一个对话框的列表控件地址作为参数传给当前对话框,在当前对话框给传递过来的列表控件添加内容就行了。
热心网友
时间:2023-10-15 16:24
子对话框输入:
UpdateData(TRUE);
GetDlgItem(IDC_EDIT1)->GetWindowText(str0);
GetDlgItem(IDC_EDIT2)->GetWindowText(str1);
UINT nID=GetCheckedRadioButton(IDC_RADIO1,IDC_RADIO2);
GetDlgItemText(nID,str2);
GetDlgItem(IDC_EDIT3)->GetWindowText(str3);
GetDlgItem(IDC_EDIT4)->GetWindowText(str4);
父对话框中输入:
m_list.InsertItem(index,"");
int count;
/*POSITION pos=m_list.GetFirstSelectedItemPosition();
while(pos!=NULL)
{int itemindex=m_list.GetNextSelectedItem(pos);
}*/
//return itemindex;
//for(int i=0;i<5; i++)
m_list.SetItemText(index,0,dlg.str0);
m_list.SetItemText(index,1,dlg.str1);
m_list.SetItemText(index,2,dlg.str2);
m_list.SetItemText(index,3,dlg.str3);
m_list.SetItemText(index,4,dlg.str4);
m_list.SetTextBkColor(RGB(100,150,23));
UpdateData(FALSE);
count++;
热心网友
时间:2023-10-15 16:24
通过对话框的指针追问CEdit *editl=(CEdit *)GetDlgItem(IDC_EDIT_JK);
editl->GetWindowText(JK);
app->JK=JK;
这样对不对?但是无法执行啊 大概有什么原因啊