This question is locked. New answers and comments are not allowed.
Hello,
I'm importing an external .xap file via MEF (no Prism) into my main project. My external .xap file has a RadGridView in a UserControl that's being imported / injected to a <ContentControl x:Name="content" /> (that is of course on the main page).
My question is this; once I have my control imported, how do I get access to the RadGridView (that is inside of the ContentControl) with my C# code behind?
Do I need to use the FindName("ControlName") method of the ContentControl?
I assign the value like this; content.Content = SelectedMEFModule.Value; (yes, that's just a small part of the import code).
Any suggestions would be greatly appreciated?
Many thanks in advance,
~ Dave