我有一个窗体AdvancedSearchForm
,它有一个datagridview控件dgrData
,还有一个按钮Report
。单击按钮Report
,我希望具有reportview控件的窗体显示的列与具有相同列标题的datagridview中的列相同。
带datagridview和button的窗体
点击“报告”按钮时需要输出:
我的DataGridView(dgrData
)控件与
SQL语言
“Select Id, c_Name from Country”
连接串
server=localhost;User Id=root;password=root;Persist Security Info=True;database=country_state
为了在运行时将数据加载到网格,我准备了以下数据适配器:
DataAdapter dataAdapter = DataAdapter.Current;
// I am passing the SQL statement and the table name to my database which knows the ConnectionString within the LoadData function
DataTable dt0 = dataAdapter.LoadData("select Id, c_Name from `country`", "country");
if (dt0 != null) {
dgrData.DataSource = dt0;
}
是否可以调用包含默认reportviewer控件的子窗体,该控件在运行时动态显示包含与datagridview(
dgrData
)相对应的列的表以及数据的报表?详细输出预期:
单击按钮时,目标窗体上的报表查看器应
从中的值与数据源关联
数据网格视图。因此,在用户单击报表之前,reportviewer控件对报表中的数据一无所知
运行时按钮。
我希望解决方案不需要创建单独的rdlc
文件,因为它导致外部依赖性,停止当前流
并在报表文件设计器中创建一个报表文件,该文件可以
对用户来说太过分了。
我对RDLC设计器和关联数据源一无所知(我是
愿意学习,但我不能强迫这种学习要求
并将数据绑定到报告中。我会很感激的
如果您的帮助包含理论,则使用代码示例。
我知道reportviewer已经存在很长时间了。愿望
数据网格和
reportviewer对于将来的人来说更容易找到。
注:请让我知道,如果有任何额外的数据需要从我的一方在评论。为了展示当前的解决方案,我必须创建和rdlc文件,在设计时必须同时放置连接字符串和sql,我希望在我寻找的解决方案中避免这样的情况。我希望找到一个解决方案,其中rdlc文件是通过一些模块化代码生成的,这些代码也可以用于其他解决方案,而不必为我拥有数据网格的每个表单设计它。
最佳答案
作为在运行时动态创建RDLC
报表的选项,您可以使用Run-Time Text Templates。
在下面的示例中,我创建了一个简单的网格报表,可用于在运行时动态创建报表。您可以动态地将列添加到报表中,并为列设置标题、宽度和页眉背景颜色。
在本例中,我使用DataGridView
填充了模板。但是,您可以使用这种技术依赖于任何类型的控件,甚至可以在web表单中使用它。
示例用法-创建和显示动态报表
要创建和显示动态报表,只需在ReportForm
中添加一些列,然后设置数据并显示表单。
var f = new ReportForm();
f.ReportColumns = this.dataGridView1.Columns.Cast<DataGridViewColumn>()
.Select(x => new ReportColumn(x.DataPropertyName)
{ Title = x.HeaderText, Width = x.Width }).ToList();
f.ReportData = this.dataGridView1.DataSource;
f.ShowDialog();
解决方法
将
ReportColumn
和DynamicReport.tt
以及ReportForm
添加到您的应用程序中,甚至在可重用库中添加一次,然后像上面的示例一样简单地使用就足够了。按照以下步骤创建动态报表模板。报表列模型
创建包含标题、表达式、颜色等属性的报表列模型。我们将使用此项向报表添加列。
using System;
using System.Drawing;
public class ReportColumn
{
public ReportColumn(string name)
{
Name = name;
Title = name;
Type = typeof(System.String);
Width = GetPixelFromInch(1);
Expression = string.Format("=Fields!{0}.Value", name);
HeaderBackColor = Color.LightGray;
}
public string Name { get; set; }
public string Title { get; set; }
public Type Type { get; set; }
public int Width { get; set; }
public float WidthInInch
{
get { return GetInchFromPixel(Width); }
}
public string Expression { get; set; }
public Color HeaderBackColor { get; set; }
public string HeaderBackColorInHtml
{
get { return ColorTranslator.ToHtml(HeaderBackColor); }
}
private int GetPixelFromInch(float inch)
{
using (var g = Graphics.FromHwnd(IntPtr.Zero))
return (int)(g.DpiY * inch);
}
private float GetInchFromPixel(int pixel)
{
using (var g = Graphics.FromHwnd(IntPtr.Zero))
return (float)pixel / g.DpiY;
}
}
报表模板
将运行时模板(也称为预处理模板)添加到项目中,并将其命名为
DynamicReport.tt
,然后将此内容复制到文件:<#@ template language="C#" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ parameter name="Model" type="System.Collections.Generic.List<ReportColumn>"#>
<?xml version="1.0" encoding="utf-8"?>
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">
<DataSources>
<DataSource Name="DataSource1">
<ConnectionProperties>
<DataProvider>System.Data.DataSet</DataProvider>
<ConnectString>/* Local Connection */</ConnectString>
</ConnectionProperties>
<rd:DataSourceID>e9784bb0-a630-49cc-b7f9-8495aca23a6c</rd:DataSourceID>
</DataSource>
</DataSources>
<DataSets>
<DataSet Name="DataSet1">
<Fields>
<# foreach(ReportColumn column in Model){#>
<Field Name="<#=column.Name#>">
<DataField><#=column.Name#></DataField>
<rd:TypeName><#=column.Type.Name#></rd:TypeName>
</Field>
<# }#>
</Fields>
<Query>
<DataSourceName>DataSource1</DataSourceName>
<CommandText>/* Local Query */</CommandText>
</Query>
<rd:DataSetInfo>
<rd:DataSetName />
<rd:TableName />
<rd:ObjectDataSourceType />
</rd:DataSetInfo>
</DataSet>
</DataSets>
<Body>
<ReportItems>
<Tablix Name="Tablix1">
<TablixBody>
<TablixColumns>
<# foreach(ReportColumn column in Model){#>
<TablixColumn>
<Width><#=column.WidthInInch#>in</Width>
</TablixColumn>
<# }#>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>0.25in</Height>
<TablixCells>
<# foreach(ReportColumn column in Model){#>
<TablixCell>
<CellContents>
<Textbox Name="<#=column.Name#>TextBox">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value><#=column.Title#></Value>
<Style />
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName><#=column.Name#>TextBox</rd:DefaultName>
<Style>
<Border>
<Color>LightGrey</Color>
<Style>Solid</Style>
</Border>
<BackgroundColor><#=column.HeaderBackColorInHtml#></BackgroundColor>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<# }#>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.25in</Height>
<TablixCells>
<# foreach(ReportColumn column in Model){#>
<TablixCell>
<CellContents>
<Textbox Name="<#=column.Name#>">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value><#=column.Expression#></Value>
<Style />
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName><#=column.Name#></rd:DefaultName>
<Style>
<Border>
<Color>LightGrey</Color>
<Style>Solid</Style>
</Border>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<# }#>
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<# foreach(ReportColumn column in Model){#>
<TablixMember />
<# }#>
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<KeepWithGroup>After</KeepWithGroup>
</TablixMember>
<TablixMember>
<Group Name="Details" />
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<DataSetName>DataSet1</DataSetName>
<Top>0.15625in</Top>
<Left>0.125in</Left>
<Height>0.5in</Height>
<Width>2in</Width>
<Style>
<Border>
<Style>None</Style>
</Border>
</Style>
</Tablix>
</ReportItems>
<Height>0.82292in</Height>
<Style />
</Body>
<Width>6.5in</Width>
<Page>
<LeftMargin>1in</LeftMargin>
<RightMargin>1in</RightMargin>
<TopMargin>1in</TopMargin>
<BottomMargin>1in</BottomMargin>
<Style />
</Page>
<rd:ReportID>60987c40-62b1-463b-b670-f3fa81914e33</rd:ReportID>
<rd:ReportUnitType>Inch</rd:ReportUnitType>
</Report>
报表
将a
Form
添加到project,将aReportViewer
控件添加到窗体,并将此代码放入类中:public partial class ReportForm : Form
{
public ReportForm()
{
InitializeComponent();
ReportColumns = new List<ReportColumn>();
this.Load+=new EventHandler(ReportForm_Load);
}
public List<ReportColumn> ReportColumns { get; set; }
public Object ReportData { get; set; }
private void ReportForm_Load(object sender, EventArgs e)
{
var report = new DynamicReport();
report.Session = new Dictionary<string, object>();
report.Session["Model"] = this.ReportColumns;
report.Initialize();
var rds = new Microsoft.Reporting.WinForms.ReportDataSource("DataSet1", this.ReportData);
this.reportViewer1.LocalReport.DataSources.Clear();
this.reportViewer1.LocalReport.DataSources.Add(rds);
var reportContent = System.Text.Encoding.UTF8.GetBytes(report.TransformText());
using (var stream = new System.IO.MemoryStream(reportContent))
{
this.reportViewer1.LocalReport.LoadReportDefinition(stream);
}
this.reportViewer1.RefreshReport();
}
}
注意
您可以简单地扩展
ReportColumn
模型,也可以扩展DynamicReport.tt
。我使用一个退出的报告创建了模板,我只是使用了一些T4代码标签来实现它的动态。例子
您可以克隆或下载一个工作示例:
r-aghaei/DynamicRdlcReport
Download Zip
关于c# - 在运行时从DataGridView动态创建RDLC报告,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40362991/