ok 页属性页中背景音乐应该有水平滚动条

列表控件listbox 水平滚动条

void CScfPagePropertyDlg03::ShowFileList(void)

{

  CSize sz; 

  int dx=0;

  CDC * pDC = m_picListBox.GetDC();

  if (m_pScfEdtPage)

  {

    for (int i=0; i<m_pScfEdtPage->m_BK_MusicList.size(); i++)

    {...

       m_picListBox->AddString(szPath);

       sz = pDC-> GetTextExtent(szPath); 

       if (sz.cx > dx) 

         dx   =   sz.cx;

    }

    m_picListBox.SetHorizontalExtent(dx);

  }

}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2021-11-15
  • 2022-12-23
  • 2021-07-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-05
  • 2022-01-30
  • 2021-09-28
相关资源
相似解决方案