MFC中listctrl控件如何冻结第一列?
listctrl控件(是一个而不是并排两个),可以实现像excel里面那种冻结首列窗口功能不?就是把第一列固定只能上下移动不能左右移动其余列能正常移动?会excel的应该...
listctrl控件(是一个而不是并排两个),可以实现像excel里面那种冻结首列窗口功能不?就是把第一列固定只能上下移动不能左右移动 其余列能正常移动?会excel的应该都能明白我的意思!能提供代码参考的话,200分送上!
有经验的可以传授下,我q 798667612
网上我也搜了,相关资料极少貌似,这么难实现么? 展开
有经验的可以传授下,我q 798667612
网上我也搜了,相关资料极少貌似,这么难实现么? 展开
3个回答
展开全部
void CFreezeLastRowListCtrl::FreezeLastItem()
{
if (m_AddedIndex != -1)
{
DeleteItem(m_AddedIndex);
}
int TopIndex = GetTopIndex();
int NumPerPage = GetCountPerPage();
m_AddedIndex = TopIndex + NumPerPage - 1;
if (m_AddedIndex < GetItemCount()-1)
{
CString Text = GetItemText(GetItemCount()-1,0);
InsertItem(m_AddedIndex,Text);
}
else
{
m_AddedIndex = -1;
}
}
void CFreezeLastRowListCtrl::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar*
pScrollBar)
{
SetRedraw(FALSE);
int nOldPos = GetScrollPos(SB_VERT);
CListCtrl::OnVScroll(nSBCode, nPos, pScrollBar);
nPos = GetScrollPos(SB_VERT);
if (SB_ENDSCROLL == nSBCode || nOldPos == nPos)
{
SetRedraw(TRUE);
return;
}
FreezeLastItem();
SetRedraw(TRUE);
}
{
if (m_AddedIndex != -1)
{
DeleteItem(m_AddedIndex);
}
int TopIndex = GetTopIndex();
int NumPerPage = GetCountPerPage();
m_AddedIndex = TopIndex + NumPerPage - 1;
if (m_AddedIndex < GetItemCount()-1)
{
CString Text = GetItemText(GetItemCount()-1,0);
InsertItem(m_AddedIndex,Text);
}
else
{
m_AddedIndex = -1;
}
}
void CFreezeLastRowListCtrl::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar*
pScrollBar)
{
SetRedraw(FALSE);
int nOldPos = GetScrollPos(SB_VERT);
CListCtrl::OnVScroll(nSBCode, nPos, pScrollBar);
nPos = GetScrollPos(SB_VERT);
if (SB_ENDSCROLL == nSBCode || nOldPos == nPos)
{
SetRedraw(TRUE);
return;
}
FreezeLastItem();
SetRedraw(TRUE);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
楼主解决了吗?能不能给我说下,QQ951107618
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-05-15
展开全部
加你q说吧!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询