コード例 #1
0
ファイル: HtmlPanel.cs プロジェクト: cixonline/cixreader
 /// <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));
 }
コード例 #2
0
ファイル: HtmlPanel.cs プロジェクト: cixonline/cixreader
 private void OnScrollChange(object sender, HtmlScrollEventArgs e)
 {
     OnScrollChange(e);
 }
コード例 #3
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);
 }