I've tried putting this in my code, but a and b are both coming back as null, so I don't know how to add items to the top menu.
public class MyWindow : NTWindow, IWorkspacePersistence {
public MyWindow() {
Loaded += (o, e) => {
if (WorkspaceOptions == null) WorkspaceOptions = new WorkspaceOptions("MyWindow-" + Guid.NewGuid().ToString("N"), this);
var a = this.FindFirst("PART_Menu");
var b = this.FindName("PART_Menu");
};
}
...
}
Thanks in advance

Comment