Hi!
I'm facing the following problem: I have a class TestDialog wich extends Gtk.Dialog. This class contains another class ReusableWidget wich extends Gtk.bin. The ReusableWidget contains a button that launch a FileChooserDialog: FileChooserDialog fChooser = new FileChooserDialog ( "", null, FileChooserAction.Open ,"gtk-cancel", ResponseType.Cancel, "gtk-open",ResponseType.Accept); As ReusableBin extends Gtk.Bin I cannot set the the parent window of the file chooser dialog doing this: FileChooserDialog fChooser = new FileChooserDialog ( "", this,... So, when the file chooser is launched, if I click on TestDialog, it takes the focus and goes over the file chooser dialog (but it doesn't do anything else as ReusableBin is modal). How do I set-up the parent window of the file chooser if it's called inside a Gtk.Bin class? Regards, Andoni Morales _______________________________________________ Gtk-sharp-list maillist - Gtk-sharp-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/gtk-sharp-list