Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 441 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 441 Bytes

NSWindowExtensions

This is NSWindow Extensions for Xamarin.Mac.

Nuget is here.

Install

PM>Install-Package NSWindowsExtensions -Version 1.0.7.3

Usage

public override ViewDidLoad()
{
    base.ViewDidLoad();
    SomeButton.Activated += async(sender , e) => await View.Window.RunAlertAsync("Welcome!","Hello Xamarin.Mac!"NSAlertStyle.Informational);
}