Hello I have an issue with positioning a popup, in a WP8 app.
My code is that I have instantiated a popup, where the child is a usercontrol, like:
Popup
I am not sure but try something like this.
var activePage = (PhoneApplicationPage) RootFrame.Content;
var pageContent = (Grid) activePage.Content;
UsercontrolElement childpopup = new UsercontrolElement();
Grid.SetRowSpan(childpopup , pageContent.RowDefinitions.Count);
pageContent.Children.Add(childpopup );