I have a problem with StiWpfDesignerControl
Posted: Fri Apr 04, 2014 8:22 am
Hi,
I use the StiWpfDesignerControl and StiReport like this:
The result were as follows:

I can't see my registration data columns.
But, if I use them like this in the following code:
Result like this:

I use the StiWpfDesignerControl in the wrong way?
I use the StiWpfDesignerControl and StiReport like this:
Code: Select all
StiReport report = new StiReport();
report.RegData("DTData", this.GetDataTable());
StiWpfDesignerControl sti = new StiWpfDesignerControl(report);
Root.Children.Add(sti);
I can't see my registration data columns.
But, if I use them like this in the following code:
Code: Select all
StiReport report = new StiReport();
report.RegData("CSVData", this.LoadCSV());
report.DesignWithWpf();
I use the StiWpfDesignerControl in the wrong way?