WTL:在StatusBar中添加状态的方法

WTL:在StatusBar中添加状态的方法
1. 头文件中
在stdafx.h中添加
#include <atlctrlx.h> // 包含了CMultiPaneStatusBarCtrl
#include <atlmisc.h> 包含了CString

2. 在MainFram.h中
添加 CMultiPaneStatusBarCtrl m_wndStatusBar

添加UPDATE_ELEMENT(1,UPDUI_ELEMENT)
UPDATE_ELEMENT(2,UPDUI_ELEMENT)

3. 在Resource-〉Sring Table中添加
IDPANE_STATUS 1 @@@@
IDPANE_INDICATOR 2 @@@@
3. 在CMainFrame::OnIdle中
添加 UIUpdateStatusBar()
在CMainFrame::OnCreate(...)中添加
CreateSimpleStatusBar();

m_hwndStatusBar = m_wndStatusBar.Create(*this);
UIAddStatusBar(m_hWndStatusBar);
int anPanes[] = {ID_DEFAULT_PANE, IDPANE_STATUS, IPPANE_INDICATOR};
m_wndStatusBar.SetPanes(anPanes, 3, false);

5. 在某个响应函数中添加
UISetText(1,_T("Running"));

你可能感兴趣的:(WTL:在StatusBar中添加状态的方法)