在C#中,TreeList控件(如DevExpress的TreeList)默认情况下是没有垂直滚动条的。如果需要添加滚动条,可以通过设置控件的OptionsView属性来实现。
treeList1.OptionsView.ShowVertLines = true;
treeList1.OptionsView.ShowHorzLines = true;
treeList1.OptionsView.ShowIndicator = true;
treeList1.OptionsView.ShowVertScroll = true;
通过设置OptionsView的ShowVertScroll属性为true,可以在TreeList控件中添加垂直滚动条。同时,也可以设置ShowHorzScroll属性为true来添加水平滚动条。
需要注意的是,具体的设置方法可能会因为使用的TreeList控件库不同而有所差异,以上代码示例是基于DevExpress的TreeList控件,其他库的TreeList控件可能有类似但不完全相同的属性设置方法。