本文整理汇总了C++中CGridListCtrlEx::GetItemText方法的典型用法代码示例。如果您正苦于以下问题:C++ CGridListCtrlEx::GetItemText方法的具体用法?C++ CGridListCtrlEx::GetItemText怎么用?C++ CGridListCtrlEx::GetItemText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CGridListCtrlEx
的用法示例。
在下文中一共展示了CGridListCtrlEx::GetItemText方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnClickEditStart
//------------------------------------------------------------------------
//! Checks if the mouse click should start the cell editor (OnEditBegin)
//! Validates that the click was on the text-link within the label-part
//!
//! @param owner The list control being clicked
//! @param nRow The index of the row
//! @param nCol The index of the column
//! @param pt The position clicked, in client coordinates.
//! @param bDblClick Whether the position was double clicked
//! @return How should the cell editor be started (0 = No editor, 1 = Start Editor, 2 = Start Editor and block click-event)
//------------------------------------------------------------------------
int CGridColumnTraitHyperLink::OnClickEditStart(CGridListCtrlEx& owner, int nRow, int nCol, CPoint pt, bool bDblClick)
{
int startEdit = CGridColumnTraitImage::OnClickEditStart(owner, nRow, nCol, pt, bDblClick);
if (startEdit)
{
// Check if mouse click was inside the label-part of the cell
CRect labelRect;
if (owner.GetCellRect(nRow, nCol, LVIR_LABEL, labelRect) && labelRect.PtInRect(pt))
{
// Check if mouse click was inside the text-link of the cell
CString cellText = owner.GetItemText(nRow, nCol);
if (GetTextRect(owner, nRow, nCol, cellText).PtInRect(pt))
return startEdit;
else
return 0;
}
}
return startEdit;
}