FirstView.cs.txt.pp 623 B

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