如何在ASP.Net TreeView中设置图像的大小?
我们尝试设置这样的尺寸,但图片以完整尺寸显示:
<asp:TreeView
runat="server"
DataSourceID="KnowledgeAcademySiteMap">
<RootNodeStyle ImageUrl="/Images/book.png" Height="32px" Width="32px" />
<ParentNodeStyle ImageUrl="/Images/book.png" Height="32px" Width="32px" />
<LeafNodeStyle ImageUrl="/Images/book.png" Height="32px" Width="32px" />
</asp:TreeView>
答案 0 :(得分:3)
高度和宽度应用于树视图节点,不应用于图像,这解释了图像大小不变的原因。
你可以:
<强> CSS:强>
.treeView img { 宽度:32PX; 高度:32PX; }
<强> ASPX:强>
<asp:TreeView CssClass="treeView" ...