首页 随笔 乐走天涯 程序资料 评论中心 Tag 论坛 其他资源 搜索 联系我 关于 RSS

A VisualStudio-like ListBox class - Visual Studio 风格的列表框


日期: 2000-02-01 14:00 | 联系我 | 关注我: Telegram, Twitter

本程序实现 Visual Studio 风格的列表框(A VisualStudio-like ListBox class),如图:

Visual Studio 风格的列表框(A VisualStudio-like ListBox class)

  1. 环境:VC++ 6
  2. 作者: Stefano Passiglia
  3. 下载链接 下载源代码及演示程序

A VisualStudio-like ListBox class 示例代码


// This class overrides the OnBrowseButton method.
class CMyListBoxEx: public CListBoxEx
{
public:

 virtual void OnBrowseButton( int iItem )
 {
  iItem;
  CSHBrowseDlg dlgBrowse;
  if ( dlgBrowse.DoModal() ) SetEditText( dlgBrowse.GetFullPath() );
 };
};

class CListBoxExDemoDlg : public CDialog
{
// Construction
public:
 // standard constructor
 CListBoxExDemoDlg(CWnd* pParent = NULL);

// Dialog Data
 //{{AFX_DATA(CListBoxExDemoDlg)
 enum { IDD = IDD_LISTBOXEXDEMO_DIALOG };
 CMyListBoxEx	m_ListBoxEx;
 //}}AFX_DATA
};
If you want to use also the buddy class, drop a button on the dialog, change its properties and make it owner-draw and with a client edge. Then, in your dialog OnInitDialog() subclass the button control in this way:

// Add the listbox buddy
m_ListBoxExBuddy.SubclassDlgItem( IDC_LISTBUDDY, this );
m_ListBoxExBuddy.SetListbox( &m_ListBoxEx )


 文章评论

第 1 楼  发表于 2010-09-14 22:30 | haihai107 的所有评论
缺少下面的文件:
InPlaceCtrls.cpp
listboxes.cpp
SHBrowseDlg.cpp

共有评论 1 条, 显示 1 条。

发表你的评论
如果你想针对此文发表评论, 请填写下列表单:
姓名: * 必填 (Twitter 用户可输入以 @ 开头的用户名, Steemit 用户可输入 @@ 开头的用户名)
E-mail: 可选 (不会被公开。如果我回复了你的评论,你将会收到邮件通知)
反垃圾广告: 为了防止广告机器人自动发贴, 请计算下列表达式的值:
10 x 5 + 5 = * 必填
评论内容:
* 必填
你可以使用下列标签修饰文字:
[b] 文字 [/b]: 加粗文字
[quote] 文字 [/quote]: 引用文字

 
首页 随笔 乐走天涯 猎户星 Google Earth 程序资料 程序生活 评论 Tag 论坛 资源 搜索 联系 关于 隐私声明 版权声明 订阅邮件

程序员小辉 建站于 1997 ◇ 做一名最好的开发者是我不变的理想。
Copyright © XiaoHui.com; 保留所有权利。