On Sun, Jan 25, 2009 at 12:51 PM, Wolfgang Mauer <w.ma...@top-soft.info> wrote:
> Hi all,
> is it posssible to make the "Return" Key acts like the "Tab" key ?

Presumably you want this only for Entry widgets?  If so, write a
method something like:

private static void OnForwardActivate(object sender, EventArgs args)
{
    Widget widget = sender as Widget;
    if (widget != null)
        widget.ChildFocus(DirectionType.TabForward);
}

Then attach this method to the Entry.Activated signal for each entry
you want this behavior to apply to.

-- 
Chris Howie
http://www.chrishowie.com
http://en.wikipedia.org/wiki/User:Crazycomputers
_______________________________________________
Gtk-sharp-list maillist  -  Gtk-sharp-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to