显示时分秒
1>在Resource标签StringTable中添加New String,在此定义为ID_INDICATOR_CLOCK,将其Caption设为00:00: 00(注意此处00与:之间不能有其他字符或符号).
注意,本步操作时有两种方式:
一种建立新的StringTable,并添加String;另一种则在原有StringTable
中添加。当用后一种方式操作时,若完成后,时钟栏并不显示时间,则需要将此
New String在String Table中对应的Value值加1(可在resource.h中修改)。
2>在MainFrm.cpp中的indicators声明出添加ID_INDICATOR_CLOCK,代码如下:
…
static UINT indicators[] =
{
ID_SEPARATOR,
ID_INDICATOR_CLOCK, //这里排列影响显示顺序,s所要添加的String的ID
ID_INDICATOR_CAPS,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
…
这一步中ID_INDICATOR_CLOCK的插入位置将影响时间窗格在状态栏中的显示位置。
3>安装定时器:在MainFrm.cpp中OnCreate函数处添加代码如下:
intCMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
……
SetTimer(1,1000,NULL);//安装定时器,并将其时间间隔设为1000毫秒
return 0;
}
4)编写时间处理函数:利用ClassWizard为CMainFrame类加入WM_TIMER的消息处理函数OnTimer,并添加代码如下:
void CMainFrame::OnTimer(UINTnIDEvent)
{
CTime time;
time=CTime::GetCurrentTime();//得到当前时间
CStrings=time.Format("%H:%M:%S");//转换时间格式
m_wndStatusBar.SetPaneText(m_wndStatusBar.CommandToIndex(ID_INDICATOR_CLOCK),s);//显示时钟
CFrameWnd::OnTimer(nIDEvent);}
5)销毁定时器:利用ClassWizard为CMainFrame类加入WM_CLOSE的消息处理函数OnClose,并添加代码如下:
void CMainFrame::OnClose()
{
KillTimer(1);//销毁定时器
CFrameWnd::OnClose();
}
最后,编译运行。
可以通过调用CStatusBar的成员函数SetPaneStyle,SetPaneInfo来设置你的时钟栏的显示方式。例如:在MainFrm.cpp中OnCreate函数处添加如下代码,即可将你的时钟栏popout:
int CMainFrame::OnCreate(LPCREATESTRUCTlpCreateStruct)
{…
m_wndStatusBar.SetPaneInfo(m_wndStatusBar.CommandToIndex(ID_INDICATOR_CLOCK),ID_INDICATOR_CLOCK,SBPS_POPOUT,50);
return 0;
}
效果图:
显示年月日时分秒
1>同上面的1,不过记得caption设置为0000-00- 00 00: 00: 00
2>同上面的2
3>同上面的3
4>将CStrings=time.Format("%H:%M:%S");改为CStrings = time.Format("%Y-%m-%d %H:%M:%S")
其他一致相同,编译运行即可
效果图:
年月日与时分秒分开显示
1>基本同上1添加两个CString一个ID_INDICATOR_CLOCK,caption为0000-00- 00,另一个ID_INDICATOR_YYYY,caption为00:00: 00
2>在MainFrm.cpp中的indicators声明出添加ID_INDICATOR_CLOCK和ID_INDICATOR_YYYY
3>同上面的3
4>CStrings = time.Format("%Y-%m-%d ");
CString date = time.Format("%H:%M:%S");
m_wndStatusBar.SetPaneText(m_wndStatusBar.CommandToIndex(ID_INDICATOR_CLOCK),s);
m_wndStatusBar.SetPaneText(m_wndStatusBar.CommandToIndex(ID_INDICATOR_YYYY),date);
效果图: