Xamarin.Mac/NSViewControllerからNSWindowを取得する
NSViewControllerの直下プロパティにNSWindowを取れそうなものがない。 ググった結果、Viewプロパティ経由で取得できるようだ。 たぶん誰もがNSViewController直下のどこかにプロパティがあるだろうと探し回ることであろう。
NSViewController.View.Window
試しにマウスクリックでウインドウを移動してみる。
using System;
using AppKit;
using Foundation;
using CoreGraphics;
namespace MouseEvents
{
public partial class ViewController : NSViewController
{
// 〜〜〜 中略 〜〜〜
public override void MouseDown(NSEvent theEvent)
{
base.MouseDown(theEvent);
// NSWindowを取得する
var window = this.View.Window;
// ウインドウを左下に移動(Cocoaの座標系は左下が原点)
var frame = new CGRect(0, 0, window.Frame.Width, window.Frame.Height);
this.View.Window.SetFrame(frame, display: true);
}
}
}