I have created the fallowing ListBox
:
The easiest way to solve this is to ensure that your Listbox has a ItemContainerStyle. See the following example:
...
What happens is that your Items are being created, and by default they look for parent's property which isn't defined. Explicitly defining it will solve this problem.
I had the same issue using a TreeView and changing the bound source for these templates would cause those warnings.