在用ListCtrl控件时,当向该控件中添加数据时,怎么样可以把滚动条时时滚动到最后一行,这样便可看到添加的新数据内容 1 加完数据后执行 EnsureVisible(最后一行索引) 可以保证滚动到最后 1: // The pointer to my list view control. 2: extern CListCtrl* pmyListCtrl; 3: // Ensure that the last item is visible. 4: int nCount = pmyListCtrl…
效果如图: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namesp…
$(function(){ var h = $(document).height()-$(window).height(); $(document).scrollTop(h); }); \ window.onload = function(){ var h = document.documentElement.scrollHeight || document.body.scrollHeight; window.scrollTo(h,h); }…