共用方式為


CListCtrl::GetEditControl

擷取用來編輯控制項的控制代碼編輯清單檢視項目的文字。

CEdit* GetEditControl( ) const;

傳回值

如果成功,指標用來編輯項目文字的 CEdit 物件;否則 NULL

範例

        // The string replacing the text in the edit control.
        LPCTSTR lpszmyString = _T("custom label!");

        // If possible, replace the text in the label edit control.
        CEdit* pEdit = m_myListCtrl.GetEditControl();

        if (pEdit != NULL)
        {
            pEdit->SetWindowText(lpszmyString);
        }

需求

Header: afxcmn.h

請參閱

參考

類別 CListCtrl

階層架構圖

CListCtrl::EditLabel