25 lines
399 B
C#
25 lines
399 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
|
|
public delegate void ChangeEventHandler(object o, ChangeEventArgs args);
|
|
|
|
public class ChangeEventArgs : GLib.SignalArgs {
|
|
public int Keys{
|
|
set {
|
|
Args[0] = (int)value;
|
|
}
|
|
}
|
|
|
|
public int NKeys{
|
|
get {
|
|
return (int) Args [1];
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|