| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using AppKit;
- using Foundation;
- namespace macOSForms
- {
- 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.
- }
- }
- }
- }
|