添加滚动条到 <TablixRow> aspx, .rdlc

问题描述 投票:0回答:0

我在 .rdlc 文件中有 Tablix,如何在表格内添加垂直滚动条?

<Tablix Name="Tablix2">
  <TablixBody>
    <TablixRows>
      <TablixRow> -- I want to put here scroll bar
         <Height>0.25in</Height>
         <TablixCells>
           <TablixCell>
             <CellContents>
                some content....
            </CellContents>
          </TablixCell>
         </TablixCells>
       </TablixRow>
     </TablixRows>
   </TablixBody>
 </Tablix>
asp.net rdlc
© www.soinside.com 2019 - 2024. All rights reserved.