以编程方式显示nsoutlineview

时间:2014-11-10 14:52:02

标签: c# objective-c cocoa xamarin nsscrollview

我想显示一个简单的nsoutlineview,它将显示一个层次结构。

当我通过InterfaceBuilder做到这一点时,一切都很好,但是现在我正在以编程方式尝试它,我遇到了一些麻烦。

这里是用于在nsscrollview中显示大纲视图的代码:

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之前没有箭头,目录中的文件没有缩进...

1 个答案:

答案 0 :(得分:1)

在调试器中查找xCode如何构造滚动视图后,找到了它:S

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

this.OutlineView.OutlineTableColumn = tableColumn;