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>