如何避免CListCtrl项部分可见?

时间:2009-09-22 16:39:02

标签: visual-c++ mfc clistctrl

我有一个可调整大小的CListCtrl,我希望避免任何项目被部分显示。

例如:

partially visible item: item 9

我希望在这种情况下不显示第9项。这有旗帜或方法吗?你会如何解决这个问题?

我尝试了以下内容并没有好处:

void CMyCListCtrl::OnEndScrolling()
{
    int iCount = this->GetCountPerPage();
    EnsureVisible(iCount - 1, FALSE);
}

之后

...

ON_NOTIFY( LVN_ENDSCROLL, IDC_LIST1, OnEndScroll )

...

   void CWheelTestDlg::OnEndScroll(NMHDR* pNMHDR, LRESULT* pResult)
   {
       LPNMLVSCROLL pnmLVScroll = (LPNMLVSCROLL) pNMHDR;

       m_MyListCtrl.OnEndScrolling();
       *pResult = 0;
   }

在CListCtrl父对话框中。 (我不想这样做,我想只在我的CListCtrl派生类中做所有事情,如果可能的话)。

我所完成的只是完全显示第9项,但第10项在其下方部分可见。如果我有30个项目,我不想滚动列表以显示项目30,我想要显示项目8,其下方没有部分可见的项目。

2 个答案:

答案 0 :(得分:2)

CListCtrl似乎不支持Integral Height。 这是一个通过强制改变控制高度来实现你想要的解决方案[带注释条件](http://www.codeproject.com/Messages/418084/Socket-accept-call.aspx):

/////////////////////////////////////////////////////////////////////////////////
// This assumes a REPORT-style CListCtrl.
//
// Resize the control. This works correctly only if scrolling is disabled. If
// there is scrolling, then setting to the size from ApproximateViewRect() will
// always give scroll bars showing. Which is irritating.
//
// We need to adjust the vertical size from what ApproximateViewRect() returns
// by one row minus border width
//////////////////////////////////////////////////////////////////////////////////
CSize sz = m_list.ApproximateViewRect();    // always adds room for a new row

CRect itRect;   // Get the height of a single row (there had better *be* a row!)
m_list.GetItemRect(0, &itRect, LVIR_BOUNDS);

int vOffset = itRect.Height() - 3;  // leave a little 'cuz it looks better
m_list.SetWindowPos(NULL, 0, 0, sz.cx, sz.cy - vOffset,
    SWP_NOZORDER|SWP_NOACTIVATE|SWP_NOMOVE);

答案 1 :(得分:1)

我在wince有类似的问题,并且意外地找到了解决方案。在互联网上没有直接的解决方案,所以我决定在收到一些消息后重新定位滚动条,并且我可以在wince中使用的唯一消息是WM_LBUTTONDOWN,其他消息如OnEndScroll不会被调用,也许我的代码中有问题。

无论如何,我在收到ON_WM_TIMER消息时使用Timer(WM_LBUTTONDOWN)重新定位滚动条,然后发现列表控件不会自动滚动!然后我仍然是一个空的OnTimer函数,并删除其他一切。它工作,我猜列表控件使用Timer来滚动部分行。

希望对你有用。