ExtListView.cs 323 B

12345678910111213141516
  1. using System;
  2. using System.Windows.Forms;
  3. namespace FastReport.Controls
  4. {
  5. internal sealed class ExtListView : ListView
  6. {
  7. public event EventHandler FetchMoreItems;
  8. public ExtListView()
  9. {
  10. control.FetchMoreItems += (s, e) => FetchMoreItems?.Invoke(this, e);
  11. }
  12. }
  13. }