Réduire l'espace entre les noeuds d'un TreeView
J'essaie de réduire l'espacement entre les noeuds d'un TreeView.
Les propriétés sont pourtant parlantes et je pense que les propriétés liées aux noeuds Parent Selected etc font peut être doublon avec Node Style mais malgré cela j'ai toujours l'équivalent d'une ligne vide entre deux noeuds
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <asp:TreeView ID="tv_Liste" runat="server"
onselectednodechanged="tv_Liste_SelectedNodeChanged"
Height="132px">
<HoverNodeStyle Height="3px" />
<LeafNodeStyle ChildNodesPadding="1px" Height="3px" />
<NodeStyle ChildNodesPadding="1px"
Font-Size="XX-Small"
Height="3px"
NodeSpacing="1px"
VerticalPadding="1px" />
<ParentNodeStyle ChildNodesPadding="1px"
Height="3px"
NodeSpacing="1px"
VerticalPadding="1px" />
<RootNodeStyle Height="5px"
NodeSpacing="1px"
VerticalPadding="1px" />
<SelectedNodeStyle Height="3px"
NodeSpacing="1px"
VerticalPadding="1px" />
</asp:TreeView> |
Merci de votre aide