//-----------------------------------------------------------------------------
// wx.NET - IconizeEvent.cs
//
// The wxIconizeEvent wrapper class.
//
// Written by Alexander Olk (xenomorph2@onlinehome.de)
// (C) 2004 by Alexander Olk
// Licensed under the wxWidgets license, see LICENSE.txt for details.
//
// $Id: IconizeEvent.cs,v 1.2 2006/09/23 15:51:48 stahta01 Exp $
//-----------------------------------------------------------------------------
using System;
using System.Runtime.InteropServices;
namespace wx{
public class IconizeEvent : Event
{
[DllImport("wx-c")] static extern IntPtr wxIconizeEvent_ctor(int type);
[DllImport("wx-c")] static extern bool wxIconizeEvent_Iconized(IntPtr self);
//-----------------------------------------------------------------------------
public IconizeEvent(IntPtr wxObject)
: base(wxObject) { }
public IconizeEvent(int type)
: this(wxIconizeEvent_ctor(type)) { }
//-----------------------------------------------------------------------------
public bool Iconized
{
get { return wxIconizeEvent_Iconized(wxObject); }
}
}
}
|