• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

在工具条里面创建 CComboBox

发布: 2007-7-01 20:40 | 作者: admin | 来源: | 查看: 13次 | 进入软件测试论坛讨论

领测软件测试网

1.
打开工作区的资源标签,打开工具栏的位图资源。
在位图资源上添加一个新的按钮,
分配标识号为:ID_BTN_COMBOBOX
要记着这个按钮的位置 ( 从第一个开始,以0开始计数。分隔符也算一个,本例是第10个)
在以后的CMainFrame::OnCreate 中要调用。

2.
在CMainFrame 类中添加成员变量:
public:
CComboBox m_ComboBox;
3.
为CComboBox 控件添加标识号,通过菜单View | Resource Sysmbols ...
在资源中添加 IDC_TOOL_COMBOBOX 的标识号, 数值(Value) 取默认值。

4.
定位到CMainFrame::OnCreate ,在其中添加创建CComboBox 控件的代码。

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
{
TRACE0("Failed to create toolbar\n");
return -1;   // fail to create
}


CRect rect;
m_wndToolBar.SetButtonInfo(10, ID_BTN_COMBOBOX, TBBS_SEPARATOR, 160) ;
m_wndToolBar.GetItemRect(10, &rect);

rect.bottom += 100;

if ( ! m_ComboBox.Create(CBS_DROPDOWNLIST | WS_VISIBLE | WS_TABSTOP | CBS_AUTOHSCROLL, rect, &m_wndToolBar, IDC_TOOL_COMBOBOX) )
return -1 ;
m_ComboBox.InitStorage(2, 10 );
m_ComboBox.AddString("变量1 ");
m_ComboBox.AddString("变量2 ");
m_ComboBox.SetCurSel(0);

..........

return 0;
}

5.
定位到  MainFrm.h 中类的定义处,在其中添加消息响应函数的原型。


//{{AFX_MSG(CMainFrame)
 afx_msg void OnSelchangeCombo() ;
// NOTE - the ClassWizard will add and remove member functions here.
//  DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
DECLARE_MESSAGE_MAP()

6.
定位到 MainFrm.cpp 中的消息映射宏的定义处,在其中添加ComboBox 控件的 ON_CBN_CHANGE 消息的消息映射宏。

BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
//{{AFX_MSG_MAP(CMainFrame)
// NOTE - the ClassWizard will add and remove mapping macros here.
//  DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

7.
在 MainFrm.cpp 最后添加消息响应函数体:
void CMainFrame::OnSelchangeCombo()
{

CString sTmp;
Int nIndex;
nIndex = m_ComboBox.GetCurSel();
m_ComboBox.GetLBText( nIndex , sTmp);
MessageBox(sTmp);

}

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网