对话框中按回车转到下一个控件,Tab

 

//利用default button
void CDlgAddTest::OnOK() 
{	
	if(GetFocus()->m_hWnd== GetDlgItem(IDOK)->m_hWnd){
		MessageBox("stoped at ok.");
	}
	else{
		GetNextDlgTabItem(GetFocus())->SetFocus();
	}
	//CDialog::OnOK();
}

posted @ 2011-02-08 04:00  庚武  Views(245)  Comments(0Edit  收藏  举报