播放器的CRoundButton 代替CButton
(注:第6步可以不做,只是按钮仍是方形按钮,而做了第6步后则为圆形的) 6. 这样此播放器就具有一般的媒体播放功能了,但为了有更好的用户界面,我将按钮变成了圆形的。为此,要在工程里加入文件RoundButton.h以及 RoundButton.cpp用CRoundButton来代替CButton。先打开类向导,为上述按钮添加对应变量。 CRoundButton m_FullScreen; CRoundButton m_Repeat; CRoundButton m_Upper; CRoundButton m_Lower; CRoundButton m_Close; CRoundButton m_Exit; CRoundButton m_Stop; CRoundButton m_Play; CRoundButton m_Pause; CRoundButton m_Open;
(注:以上的个变量本来是Cbutton类型的,你要手动将他们改为CRoundButton,并在此头文件里加上#include "RoundButton.h"。)
怎么把CRoundButton 改成 CButton 望高手指点