抑制 RDLC 文件中的 rsOverlappingReportItems 警告
Suppress rsOverlappingReportItems warning in RDLC files
有没有办法抑制此类警告?它可以是单个文件,也可以是整个项目。
消息出来是这样的:
Warning X The text box ‘’ and the text box ‘’ overlap. Overlapping report items are not supported in all renderers.
请检查位置(顶部、左侧)和尺寸(宽度、高度) 属性并调整这些属性以修复此警告。
示例:
Textbox1 => Left = 1in, Width = 2in
Textbox2 => Left = 2.8in, Width = 5in //overlapping
修复:
Textbox2 => Left = Textbox1.Left + Textbox1.Width + <Small Space>
Textbox2 => Left = 1in + 2in + 0.00200in //Fix
我做到了,构建警告消失了。这可能会有用。
有没有办法抑制此类警告?它可以是单个文件,也可以是整个项目。
消息出来是这样的:
Warning X The text box ‘’ and the text box ‘’ overlap. Overlapping report items are not supported in all renderers.
请检查位置(顶部、左侧)和尺寸(宽度、高度) 属性并调整这些属性以修复此警告。
示例:
Textbox1 => Left = 1in, Width = 2in
Textbox2 => Left = 2.8in, Width = 5in //overlapping
修复:
Textbox2 => Left = Textbox1.Left + Textbox1.Width + <Small Space>
Textbox2 => Left = 1in + 2in + 0.00200in //Fix
我做到了,构建警告消失了。这可能会有用。