私はWindows Phone 7アプリケーションでアプリケーションバーを作成しようとしています。 しかし、時々動作し、ときどき動作しないので、クリックイベントにいくつか問題があると思います。Windowsのアプリケーションバー7
以下はxaml
と.cs
のコードです。
XAML
<shell:ApplicationBar IsVisible="True" IsMenuEnabled="False">
<shell:ApplicationBarIconButton IconUri="/Icons/appbar.edit.rest.png" Text="Edit" Click="btnEdit_Click" IsEnabled="True"/>
<shell:ApplicationBarIconButton IconUri="/Icons/appbar.delete.rest.png" Text="Delete" Click="btnDelete_Click" IsEnabled="True"/>
<shell:ApplicationBarIconButton IconUri="/Icons/appbar.feature.email.rest.png" Text="Email" Click="btnEmail_Click" IsEnabled="True"/>
<shell:ApplicationBarIconButton IconUri="/Icons/appbar.back.rest.png" Text="Back" Click="btnBack_Click" IsEnabled="True"/>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
は.cs
void btnBack_Click(object sender, EventArgs e)
{
NavigationService.Navigate(new Uri("/Library.xaml", UriKind.Relative));
}
void btnDelete_Click(object sender, EventArgs e)
{
MessageBox.Show("Can click");
}
誰がそれを私を助けることができます。ありがとう。
あなたは、そのページで(PhotoChooserTaskのような)任意のランチャーまたはチューザーを呼び出していますか? – keyboardP
ランチャーまたはチューザーを呼び出していません –