You can use [OnImportSatisfied] on a method and it will identify it to MEF as a callback when all imports have been resolved.
[OnImportSatisfied]
public void Initialize()
{
ChildProperty.PropertyChanged +=
(sender, args) =>
{
// do something here
};
}