Ryujinx-GtkSharp/gconf/GConf/NotifyEventArgs.cs
Rachel Hestilow d33dd8a15f 2002-10-19 Rachel Hestilow <hestilow@ximian.com>
* gconf, sample/gconf: Added.

	* glue/combo.c: This was never added, add it now.

	* configure.in, makefile, sample/Makefile.in: Build new
	gconf bindings if gnome is enabled.

svn path=/trunk/gtk-sharp/; revision=8389
2002-10-19 09:31:20 +00:00

26 lines
309 B
C#

namespace GConf
{
public class NotifyEventArgs : System.EventArgs
{
string key;
object val;
public NotifyEventArgs (string key, object val)
{
this.key = key;
this.val = val;
}
public string Key
{
get { return key; }
}
public object Value
{
get { return val; }
}
}
}