我想在CMFCPropertyGridCtrl中插入一个编辑框以输入密码。但是CMFCPropertyGridProperty只能创建普通的编辑框。我该如何创建一个新的密码使用方式?
最佳答案
从CMFCPropertyGridProperty
派生一个新类,并重写两个函数:OnDrawValue()
和CreateInPlaceEdit()
。
代码原型(prototype)可能如下所示:
void CMyGridProperty::OnDrawValue(CDC* pDC, CRect rect)
{
// pre-processing
// ...
CString strVal = FormatProperty();
if(!strVal.IsEmpty())
{
strVal = _T("******"); // NOTE: replace the plain text with "******"
}
rect.DeflateRect(AFX_TEXT_MARGIN, 0);
pDC->DrawText(strVal, rect, DT_LEFT | DT_SINGLELINE | DT_VCENTER | DT_NOPREFIX | DT_END_ELLIPSIS);
// post-processing
// ...
}
CWnd* CMyGridProperty::CreateInPlaceEdit(CRect rectEdit, BOOL& bDefaultFormat)
{
// pre-processing
// ...
CEdit* pWndEdit = new CEdit;
DWORD dwStyle = WS_VISIBLE | WS_CHILD | ES_AUTOHSCROLL | ES_PASSWORD; // NOTE: add 'ES_PASSWORD' style here
pWndEdit->Create(dwStyle, rectEdit, m_pWndList, AFX_PROPLIST_ID_INPLACE);
// post-processing
// ...
return pWndEdit;
}