mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 09:55:38 +00:00
d33dd8a15f
* 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
26 lines
309 B
C#
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; }
|
|
}
|
|
}
|
|
}
|
|
|