有没有办法抑制这种警告?它可以是单个文件,也可以是整个项目。
消息如下:
Warning X The text box ‘’ and the text box ‘’ overlap. Overlapping report items are not supported in all renderers.
答案 0 :(得分:0)
请检查位置(顶部,左侧)和尺寸(宽度,高度)属性并进行调整那些修复此警告的属性。
示例:强>
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
我做到了,构建警告消失了。这可能很有用。