I need to add a delegate to my MainWindowController
- which has all the outlets and actions and drives the program. In ObjectiveC
, the following would work
NSWindowController < NSPopoverDelegate >
How would I do this in MonoMac
? Again, to put it a different way, I would like my NSWindowController
to be the delegate.
The standard way to do this in MonoMac is to nest a private class inside your MainWindowController that derives from NSPopoverDelegate. Because your delegate has to derive from the base delegate class, you can't really make your MainWindowController itself the delegate.
e.g.
If you really want your MainWindowController to function as the delegate, you can use the
WeakDelegate
property (which takes an object) and manually export the delegate methods. This is not the preferred pattern: