VC模拟卡啦OK字幕变色

环境:Microsoft Visual C++ 6.0

问题:模拟卡啦OK字幕变色

解决:主要利用Timer计时器处理。

新建MFC AppWizard(exe)工程-------->在Resource页添加String table资源------->在CXXView中添加OnTimer消息处理------->在OnCreate里设置Timer计时器------->在OnTimer事件中添加代码。

 

贴上OnTimer里关键代码:

 

void CVTestView::OnTimer(UINT nIDEvent) 
{
	// TODO: Add your message handler code here and/or call default
	
	m_nWidth += 5;//使矩形区域不断扩大的而设置的变量的值

	CClientDC dc(this);

	TEXTMETRIC tm;
	dc.GetTextMetrics(&tm);//得到当前字体的信息
	CRect rect;
	rect.left = 0;
	rect.top = 200;
	rect.right = m_nWidth;
	rect.bottom = rect.top + tm.tmHeight;

	dc.SetTextColor(RGB(255, 0, 0));//设置文本颜色为红色

	CString str;
	str.LoadString(IDS_WEIXIN);//加载字符串资源
	dc.DrawText(str, rect, DT_LEFT);//以左对齐的方式输出文本

	rect.top = 150;
	rect.bottom = rect.top + tm.tmHeight;
	dc.DrawText(str, rect, DT_RIGHT);

	CSize sz = dc.GetTextExtent(str);//得到显示字符串的宽度和高度
	if (m_nWidth > sz.cx)//如果矩形的宽度大于了显示字符串的高度 则清零
	{
		m_nWidth = 0;
		dc.SetTextColor(RGB(0, 255, 0));//设置文本颜色为绿色
		dc.TextOut(0, 200, str);//重新输出
	}
	CView::OnTimer(nIDEvent);
}


完整工程代码下载地址:http://download.csdn.net/detail/wentasy/4005837

你可能感兴趣的:(VC,VC,模拟卡啦OK字幕变色)