[Gtk-sharp-list] Tab Order in Glade forms

Miguel de Icaza miguel@ximian.com
06 Mar 2003 15:32:08 -0500


Hello,

> How can I change the tab order in a glade form?
> 
> I've edited the xml file directly but does not work
> 
> When I compile an run the program the tab order of the widgets is the
> same, don't matter how I've changed the order in the xml file.
> 
> There is a way to fix this?

Yes, you have to manually call:

	window.SetFocusChain (list)

Where list is the list of widgets that you want to have the focus.

Miguel.