1

私は得ています:

An exception of type 'System.InvalidOperationException' occurred in Microsoft.Phone.ni.dll but was not handled in user code

私がする時:

ApplicationBarIconButton nextButton = new ApplicationBarIconButton(new Uri("/Images/next.png", UriKind.Relative));
nextButton.Text = "Next";

ApplicationBarIconButton backButton = new ApplicationBarIconButton(new Uri("/Images/back.png", UriKind.Relative));
nextButton.Text = "Previous";

ApplicationBar.Buttons.Add(nextButton);
ApplicationBar.Buttons.Add(backButton); //<---- Error when adding this

私がひどく間違っているところを誰かが見ることができますか?

4

2 に答える 2

3

Text戻るボタンのプロパティを設定していないためです。

ApplicationBarIconButton backButton = new ApplicationBarIconButton(new Uri("/Images/back.png", UriKind.Relative));
backButton.Text = "Previous"; //<< you have nextButton.Text
于 2013-08-11T13:36:13.083 に答える
0

問題は、戻るボタンのテキストを実際に設定していないことです。両方に nextButton.Text を設定しました:)

于 2013-08-11T13:43:40.880 に答える