How to access controls that are inside a TabControl tab?

.net, c#, tabcontrol, winforms

Solution

Although the controls appear inside a container (as a TabControl), they're all defined on the form, so there is no need to access them through the container.

Instead of:

tablControl1.TabPages[0].MyContainedControl...

Simply type:

MyContainedControl...

Problem

This is all I have so far. ``` tabControl1.TabPages[0].??? ``` I have a PictureBox inside of TabPage1 of my TabControl. How can I change the image location with code and not the properties pane?

Original source