示例#1
0
文件: HtmlPanel.cs 项目: massreuy/3P
 private void OnScrollChange(object sender, HtmlScrollEventArgs e)
 {
     OnScrollChange(e);
 }
示例#2
0
文件: HtmlPanel.cs 项目: massreuy/3P
 /// <summary>
 /// On html renderer scroll request adjust the scrolling of the panel to the requested location.
 /// </summary>
 protected virtual void OnScrollChange(HtmlScrollEventArgs e)
 {
     UpdateScroll(new Point((int)e.X, (int)e.Y));
 }
示例#3
0
 /// <summary>
 /// On html renderer scroll request adjust the scrolling of the panel to the requested location.
 /// </summary>
 private void OnScrollChange(object sender, HtmlScrollEventArgs e)
 {
     UpdateScroll(e.Location);
 }
示例#4
0
 /// <summary>
 /// On HTML container scroll change request scroll to the requested location.
 /// </summary>
 private void OnScrollChange(object sender, HtmlScrollEventArgs e)
 {
     ScrollToPoint(e.X, e.Y);
 }
示例#5
0
 /// <summary>
 /// On html renderer scroll request adjust the scrolling of the panel to the requested location.
 /// </summary>
 protected virtual void OnScrollChange(HtmlScrollEventArgs e)
 {
     UpdateScroll(e.Location);
 }
示例#6
0
 /// <summary>
 /// On html renderer scroll request adjust the scrolling of the panel to the requested location.
 /// </summary>
 protected virtual void OnScrollChange(HtmlScrollEventArgs e)
 {
     AutoScrollPosition = new Point((int)e.X, (int)e.Y);
 }