Border only supports a single child. Consequently it has a Child property rather than a Children property. (This Child property is defined by its base class, Decorator.)

If you want to add multiple children, something has to decide how to arrange those children within the Border. So you'd choose a Panel that does the layout style you want, make that the child of the Border, and then add further children to the Panel's Children property.