Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当单元格太小而无法包含字符串时,我的 datagridview 会缩写字符串的其余部分。
如何制作以显示水平滚动条以便查看内容?
datagridview 停靠(填充)到表单,并且有一个带有填充属性的列标题。
<asp:TemplateField HeaderText="Body"> <ItemTemplate> <div style="overflow:auto; height: 100px;"> <asp:Label ID="Label1" runat="server" Text='<%# Bind("Body")%>'></asp:Label> </div> </ItemTemplate> </asp:TemplateField>
在您的 gridview 中以这种方式使用以设置溢出数据。这显示了滚动条。