Hi,

I'm looking to understand where the problem come from ...

I got two wiget : one Entry and on ComboBox .. I try to listen two particular Event : the FocusIn and the FocusOut ...

When I listen the Entry : no trouble ... but I can't do it with the ComBoBox ...

this.cbb_Combo.FocusInEvent += new Gtk.FocusInEventHandler(this.gererFocusInEvent); this.cbb_Combo.FocusOutEvent += new Gtk.FocusOutEventHandler(this.gererFocusOutEvent);

protected virtual void gererFocusInEvent(object o, FocusInEventArgs args) {
           Console.WriteLine("gererFocusInEvent ");
}

protected virtual void gererFocusOutEvent(object o, FocusOutEventArgs args) {
           Console.WriteLine("gererFocusOutEvent ");
}



Is there somethings wrong ?

Thanks !
_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to