mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
35 lines
700 B
C#
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.
|
|
}
|
|
}
|
|
}
|
|
}
|