2
0

AppController.designer.cs 616 B

123456789101112131415161718192021222324252627
  1. // WARNING
  2. //
  3. // This file has been generated automatically by MonoDevelop to store outlets and
  4. // actions made in the Xcode designer. If it is removed, they will be lost.
  5. // Manual changes to this file may not be handled correctly.
  6. //
  7. using MonoMac.Foundation;
  8. namespace MediaBrowser.Server.Mac
  9. {
  10. partial class AppController
  11. {
  12. [Outlet]
  13. MonoMac.AppKit.NSMenu statusMenu { get; set; }
  14. [Action ("HelloWorld:")]
  15. partial void HelloWorld (MonoMac.Foundation.NSObject sender);
  16. void ReleaseDesignerOutlets ()
  17. {
  18. if (statusMenu != null) {
  19. statusMenu.Dispose ();
  20. statusMenu = null;
  21. }
  22. }
  23. }
  24. }