I was wondering whether there’s a way to trigger the parent page. For example, I have a drop down from the parent page, when I select an item, this will open up a “child”, another window based on what I’ve selected. What I want to achieve here is, in the child window, I can select an item based on the the radio button and this should should automatically update the parent window to have the correct text. I dont know if this makes sense but I hope someone can understand where I’m getting at and try to help out if possible.
Share
One option would be to create a dependency property in your child class for the text to bind to. Then you can just bind to the selected item to access said property.
Here is somewhere to get started with that
http://msdn.microsoft.com/en-us/library/ms750428.aspx
To take this further you could create a base control to put the depency property in that all your child controls would inherit from.
Edit
Base class
from here you would inherit your controls something similar to