0

enter image description here

Microsoft reportviewer cant use in WPF

Anant Dabhi
  • 10,864
  • 3
  • 31
  • 49

1 Answers1

0

You cannot just add Reportviewer control into toolbox to drag and drop, you must require to use WindowsFormsHost to put reportviewer control into your application

Something like below : WindowsFormsHost wHost = new WindowsFormsHost(); var reportV = new ReportViewer(); wHost.Child = reportV;

Anant Dabhi
  • 10,864
  • 3
  • 31
  • 49