MainWindow.cs 609 B

1234567891011121314151617181920212223242526272829303132333435
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using MonoMac.Foundation;
  6. using MonoMac.AppKit;
  7. namespace MediaBrowser.Server.Mac
  8. {
  9. public partial class MainWindow : MonoMac.AppKit.NSWindow
  10. {
  11. #region Constructors
  12. // Called when created from unmanaged code
  13. public MainWindow (IntPtr handle) : base (handle)
  14. {
  15. Initialize ();
  16. }
  17. // Called when created directly from a XIB file
  18. [Export ("initWithCoder:")]
  19. public MainWindow (NSCoder coder) : base (coder)
  20. {
  21. Initialize ();
  22. }
  23. // Shared initialization code
  24. void Initialize ()
  25. {
  26. }
  27. #endregion
  28. }
  29. }