标签: c# winforms
我想在Windows窗体应用程序中添加TreeView控件内容及其边缘之间的填充?
答案 0 :(得分:1)
这被称为“保证金”(padding is inside, margin is outside)。
TreeView.Margin property:
获取或设置控件之间的空格。
但是,如果您的TreeView停靠,则不会尊重此设置:
TreeView
在停靠控件上设置Margin属性不会影响控件与容器边缘的距离。
因此,您必须将TreeView放在Panel中,停靠Panel并将边距放在TreeView上。
Panel