PrepAway - Latest Free Exam Questions & Answers

Category: 70-599

Exam 70-599: Pro: Designing and Developing Windows Phone Applications.

Which actions should you perform?

You are designing a Windows Phone 7 application that consists of two PhoneApplicationPage objects. The application must take data entered by a user on the first page and pass the data to the second page for display purposes. You need to ensure that user data is passed properly from the first page and retrieved on the second page. Which actions should you perform? (Each correct answer presents part of the solution. Choose all that apply.)

Which code segment should you recommend for the main page?

You are designing a Windows Phone 7 application that contains a Pivot page.
The Pivot page contains the following code.
Protected Overrides Sub OnNavigatedTo(
ByVal e As System.Windows.Navigation.NavigationEventArgs) Dim index As Integer =
Convert.ToInt32(NavigationContext.QueryString(“index”)) pivot1.SelectedIndex = index
MyBase.OnNavigatedTo(e)
End Sub
You need to ensure that navigation between the main page and the Pivot page works without runtime errors. Which code segment should you recommend for the main page?

Which code segment should you recommend for the main page?

You are designing a Windows Phone 7 application that contains a Pivot page. The Pivot page contains the following code.
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) {
int index = Convert.ToInt32(NavigationContext.QueryString[“index”]); pivot1.SelectedIndex = index;
base.OnNavigatedTo(e);
}
You need to ensure that navigation between the main page and the Pivot page works without runtime errors.
Which code segment should you recommend for the main page?


Page 5 of 11« First...34567...10...Last »