mac-samples/PopupBindings/TestWindow.cs

23 строки
334 B
C#
Исходник Обычный вид История

2010-11-23 09:20:55 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using AppKit;
2010-11-23 09:20:55 +03:00
namespace PopupBindings
{
public partial class TestWindow : AppKit.NSWindow
2010-11-23 09:20:55 +03:00
{
public TestWindow (IntPtr handle) : base(handle)
{
}
[Export("initWithCoder:")]
public TestWindow (NSCoder coder) : base(coder)
{
}
}
}