RDLC报告中的圆角矩形

时间:2013-09-25 17:10:24

标签: asp.net report rdlc rounded-corners rectangles

我在RDLC报告中绘制了矩形和表格。但是我希望显示矩形的圆角和表格单元边框的黑色。有什么办法吗?或者无论如何我可以在RDLC报告元素中使用CSS样式吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试在元素上使用CSS。 无论实例名称是什么,ReportViewer Div的ID通常都是“1_”, 意思是你有类似的东西:

private void Page_Load(object sender, System.EventArgs e)
{
    MyReportViewer.ShowBackButton = false;
    MyReportViewer.ShowCredentialPrompts = false;
}

然后它应该被赋予ID =“1_MyReportViewer”。

这来自我对ReportViewer2008的体验,所以这是一个观察,不确定。