Hi everyone,
I'm pretty new in Gtk# development and I'm trying to use a
Gtk.EntryCompletion with the following code :
public class TypeEntryCompletion:Gtk.EntryCompletion {
public TypeEntryCompletion():base() {
Init();
InitEvents();
}
private void Init() {
MinimumKeyLength = 3;
}
private void InitEvents() {
MatchSelected += new
MatchSelectedHandler(OnMatchSelected);
ActionActivated += OnActionActivated;
}
private void OnActionActivated(object o,
ActionActivatedArgs args) {
Logger.Debug("action");
}
private void OnMatchSelected(object o, MatchSelectedArgs args) {
Logger.Debug("match selected");
}
}
Neither MatchSelected or ActionActivated seems to be fired. Am I wrong
somewhere? Or do you have an example of events handling with
EntryCompletion?
Thanks you.
_______________________________________________
Gtk-sharp-list maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list