borepin/Borepin/Borepin.macOS/ViewController.cs
2020-09-10 16:14:15 +02:00

35 lines
700 B
C#

using System;
using AppKit;
using Foundation;
namespace Borepin.macOS
{
public partial class ViewController : NSViewController
{
public ViewController(IntPtr handle) : base(handle)
{
}
public override void ViewDidLoad()
{
base.ViewDidLoad();
// Do any additional setup after loading the view.
}
public override NSObject RepresentedObject
{
get
{
return base.RepresentedObject;
}
set
{
base.RepresentedObject = value;
// Update the view, if already loaded.
}
}
}
}