gpt4 book ai didi

c# - 以编程方式显示 nsoutlineview

转载 作者:行者123 更新时间:2023-12-03 17:02:34 26 4
gpt4 key购买 nike

我想显示一个简单的 nsoutlineview 来显示层次结构。

当我通过 InterfaceBuilder 完成此操作时,一切都很好,但现在我尝试以编程方式进行操作,却遇到了一些麻烦。

这里是我用来在 nsscrollview 内显示大纲 View 的代码:

this.OutlineView = new NSOutlineView();
this.OutlineView.IndentationPerLevel = 16.0f;
this.OutlineView.IndentationMarkerFollowsCell = true;
this.OutlineView.SelectionHighlightStyle = NSTableViewSelectionHighlightStyle.Regular;
this.OutlineView.HeaderView = null;
this.OutlineView.BackgroundColor = NSColor.FromDeviceRgba(225f/255f,228f/255f,232f/255f,1f);
this.OutlineView.DataSource = dataSource;
this.OutlineView.Delegate = aDelegate;

NSTableColumn tableColumn = new NSTableColumn("Name");
tableColumn.Editable = false;
tableColumn.MinWidth = 100f;
this.OutlineView.AddColumn(tableColumn);

this.DocumentView = this.OutlineView;

这就是当我想显示根目录和该目录中的文件的层次结构时得到的结果:

enter image description here

root 之前没有箭头,目录中的文件没有缩进...

最佳答案

在调试器中查看 xCode 如何构造 ScrollView 后找到了它:S

除了添加表格列之外,您还必须通过添加以下行来设置 OutlineTableColumn:

this.OutlineView.OutlineTableColumn = tableColumn;

关于c# - 以编程方式显示 nsoutlineview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26846454/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com