I have several groupboxes with 3 radiobuttons in each one(they are all in the grid). In WinForms I could use Controls to access the controls by name and by index like:
groupbox1.Controls[0]
or
groupbox1.Controls["radiobutton1"]
So what I need to do in WPF is: I have a groupbox, and I need to access the certain radiobutton in it using index exactly like I would do in WinForms. Is it possible in WPF? Or how can I just reach the collection of the groupbox's children?