MFC EDIT 显示最后一行

1、未添加变量,直接引用控件ID

		CEdit*pedit=(CEdit*)GetDlgItem(IDC_EDIT_SHOWLOG);
		int nline=pedit-> GetLineCount();
		pedit-> LineScroll(nline-1);

2、添加了控件变量

m_logcontrol.LineScroll(m_logcontrol.GetLineCount()-1,0);

你可能感兴趣的:(【道阻且长C++】,【MFC】,mfc,c++)