我正在绘制reportviewer控件的滚动条以尝试触发滚动事件, 但它不起作用。 DataGridView控件显示消息框,源代码如下所示。
private void reportViewer1_Scroll(object sender, ScrollEventArgs e) {
MessageBox.Show("reportviewer is scrolling!");
}
private void dataGridView1_Scroll(object sender, ScrollEventArgs e) {
MessageBox.Show("datagridview is scrolling!");
}
有没有人遇到过这个问题?
感谢。
UI - Windows表单 语言 - C# 操作系统 - Windows 7 64位 工具 - Visual Studio Ultimate 2013 + .Net Framework 4.6.2