| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MonoMac.Foundation;
- using MonoMac.AppKit;
- using Cirrious.MvvmCross.Binding.Mac.Views;
- namespace $rootnamespace$.Views
- {
- public partial class FirstView : MvxView
- {
- #region Constructors
-
- // Called when created from unmanaged code
- public FirstView (IntPtr handle) : base (handle)
- {
- Initialize ();
- }
- // Called when created directly from a XIB file
- [Export ("initWithCoder:")]
- public FirstView (NSCoder coder) : base (coder)
- {
- Initialize ();
- }
- // Shared initialization code
- void Initialize ()
- {
- }
- #endregion
- }
- }
|