// Set the icon for this dialog. The framework does this automatically // when the application's main window is not a dialog SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here ShowWindow(SW_SHOW); UpdateWindow();
//这里做在界面显示完成后做的事情
return TRUE; // return TRUE unless you set the focus to a control }