0
我在拖動reportviewer控件的滾動條以嘗試觸發滾動事件 ,但它不起作用。 DataGridView控件顯示消息框,如下所示的源代碼。ReportViewer控件滾動事件未觸發
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# OS - Windows 7的64位 工具 - Visual Studio的終極2013 + .Net框架4.6.2