用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心编程技巧Visual C++

如何创建一个波形显示补充

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 20:33:19

(1)创建一个基于对话框的应用;

(2)在对话框上放置一个图片框设置 ID:IDC_STATIC_AUDIO

(3)在应用中添加以下代码:

BOOL CAudioBarDlg::OnInitDialog()
{

。。。。。。。。。。。。。。。。。。。。
 // TODO: Add extra initialization here
 CRect rect;
 GetDlgItem(IDC_STATIC_AUDIO)->GetWindowRect(rect);
 ScreenToClient(rect);
 m_AudioShowCtrl.Create(NULL,NULL,WS_VISIBLEWS_CHILD,rect,this,IDC_STATIC_AUDIO,NULL);
 m_AudioShowCtrl.SetRange(0,100);

。。。。。。。。。。。。。。。。。。。。。。。。。。。
 return TRUE;  // return TRUE  unless you set the focus to a control

void CAudioBarDlg::OnMyTest()
{
 // TODO: Add your control notification handler code here
 m_bStartStop=TRUE;

 if (m_bStartStop)
  SetTimer(1,500,NULL);
 else
  KillTimer(1);
}

void CAudioBarDlg::OnTimer(UINT nIDEvent)
{
 // TODO: Add your message handler code here and/or call default
 CTime t = CTime::GetCurrentTime();
 int   nRandom;

 srand(t.GetSecond());

 do
 {
  nRandom = rand();
 } while (nRandom < 0 nRandom > 100);

 m_AudioShowCtrl.SetPos(nRandom);

 CDialog::OnTimer(nIDEvent);
}


Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:13,218.75000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号