将RDLC窗口更改为UserControl

时间:2014-10-22 16:24:55

标签: c# wpf

您好,当我点击“商家信息”按钮时,它会显示包含相应信息的报告窗口。我试图将它显示在我的ShellView中,而不是“弹出窗口”。

旧代码

PreviewForm.xaml

<Window .......
    <Grid> 
         <WindowsFormsHost Name="MyHost" Margin="0,0,0,0" Visibility="Visible">
             <rv:ReportViewer x:Name="_reportViewer" ForeColor="AliceBlue" Visible="True" Dock="Fill"/>
        </WindowsFormsHost>
    </Grid>
</Window>

PreviewForm.xaml.cs

public string reportSource { get; set; }
public Microsoft.Reporting.WinForms.ReportDataSource reportDataSource { get; set; }

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    try
    {
        this._reportViewer.Reset();
        this._reportViewer.LocalReport.ReportEmbeddedResource = this.reportSource;
        this._reportViewer.LocalReport.DataSources.Clear();
        this._reportViewer.LocalReport.DataSources.Add(this.reportDataSource);
        this._reportViewer.LocalReport.Refresh();
        this._reportViewer.RefreshReport();
    }
    catch (Exception Ex)
    {
        Ex.ToString();
    }
}

ReportViewModel

public void BusinessListing()
{
    try
    {
        BindableCollection<BusinessDTO> Firms;
        using (var ctx = DB.Get())
        {
            Firms = new BindableCollection<BusinessDTO>(BusinessDTO.ReportBusiness(ctx));
        }

        Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new            Microsoft.Reporting.WinForms.ReportDataSource();
        reportDataSource1.Name            = "BusinessDTO";
        reportDataSource1.Value           = Firms;
        Reports.ReportPreviewForm preview = new Reports.ReportPreviewForm();
        preview.reportDataSource          = reportDataSource1;
        preview.reportSource              = "Reports.ListingReports.BusinessListingReport.rdlc";
        preview.Show();
    }
    catch (Exception Ex)
    {
        MessageBox.Show(Ex.Message);
    }
}

ReportGridView

<shell:GridScreenControl.Grid>
    <Grid >
        <panes:ReportPreviewForm/>
    <Grid >
</shell:GridScreenControl.Grid>

添加。

我将PreviewForm转换为UserControl。

更改了Window_Loaded =&gt;

public void Update()

在我的ReportViewModel而不是preview.Show()我有preview.Update() 它目前只显示一个空白的白色屏幕。

2 个答案:

答案 0 :(得分:0)

我认为您需要告诉您的窗格填充网格?在原始代码中,您B告诉报告填写窗口。为什么不尝试这个,或者在网格,窗格和窗口中添加一些固定的高度和宽度,以查看是否存在问题。

您还可以设置窗口(例如蓝色)和网格(例如绿色)的背景颜色,以查看它们是否确实被窗格覆盖。

这不是最科学的方法,但为您提供了一些可视化工具。还有像WPF Snoop这样的工具可以提供帮助。

答案 1 :(得分:0)

也许你需要为你的更新方法添加一个调度程序,因为你的调用现在来自viewmodel:

private Dispatcher _dispatcher; // In class
_dispatcher = Dispatcher.CurrentDispatcher; // In constructor

public void Update()
{
    try
    {
        _dispatcher.BeginInvoke(new Action(() =>
        {
            this._reportViewer.Reset();
            this._reportViewer.LocalReport.ReportEmbeddedResource = this.reportSource;
            this._reportViewer.LocalReport.DataSources.Clear();
            this._reportViewer.LocalReport.DataSources.Add(this.reportDataSource);
            this._reportViewer.LocalReport.Refresh();
            this._reportViewer.RefreshReport();
        }));
    }
    catch (Exception Ex)
    {
        Ex.ToString();
    }
}