SwitchComboBox.cpp
资源名称:ComboBox.rar [点击查看]
上传用户:hbjdyb2005
上传日期:2021-01-26
资源大小:168k
文件大小:1k
源码类别:
组合框控件
开发平台:
Visual C++
- // SwitchComboBox.cpp : implementation file
- //
- #include "stdafx.h"
- #include "SwitchCmbExample.h"
- #include "SwitchComboBox.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CSwitchComboBox
- CSwitchComboBox::CSwitchComboBox()
- {
- }
- CSwitchComboBox::~CSwitchComboBox()
- {
- }
- BEGIN_MESSAGE_MAP(CSwitchComboBox, CComboBox)
- //{{AFX_MSG_MAP(CSwitchComboBox)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CSwitchComboBox message handlers
- void CSwitchComboBox::SetReadOnly(BOOL bReadOnly)
- {
- BOOL m_bEditable = !bReadOnly;
- // 第一个子窗口为编辑窗口,取得该编辑窗口指针
- CEdit* pComboEdit=(CEdit*)GetWindow(GW_CHILD);
- pComboEdit->EnableWindow(TRUE); //使能编辑窗口
- pComboEdit->SetReadOnly(!(m_bEditable && IsWindowEnabled())); //设置编辑窗口的只读属性
- Invalidate(); //重绘
- }