diff --git a/gtk/Combo.custom b/gtk/Combo.custom index 9369ec16e..8f3d6586f 100644 --- a/gtk/Combo.custom +++ b/gtk/Combo.custom @@ -14,3 +14,12 @@ public Gtk.Entry Entry { return new Gtk.Entry (gtksharp_combo_get_entry(this.Handle)); } } + +[DllImport("gtksharpglue")] +static extern IntPtr gtksharp_combo_get_button(IntPtr i); + +public Gtk.Button Button { + get { + return new Gtk.Button (gtksharp_combo_get_button(this.Handle)); + } +}