MainWindow.cs 601 B

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