Hello,
I want to retrieve a child of the window I am in Gtk#. So far the only way I found looking at the documentation is to do it using a loop through the Children
property of the Window, like:
foreach (Widget w in this)
{
if (w.Name == "MyWidget")
return w;
}
where this
is the window.
I am sure there must be a better, cleaner and efficient way to directly retrieve a particular child widget from an element, based on some of its properties.
Thanks for your help!