using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Diagnostics;
using Microsoft.Phone.Shell;
namespace BlankApp1
{
public partial class MainPage : PhoneApplicationPage
{
// コンストラクター
public MainPage()
{
InitializeComponent();
}
private void ApplicationBarIconButton_Click(object sender, EventArgs e)
{
var result = MessageBox.Show(
(sender as ApplicationBarIconButton).Text,
"タイトル",
System.Windows.MessageBoxButton.OKCancel
);
if (result == MessageBoxResult.OK)
{
Debug.WriteLine("OK");
}
if (result == MessageBoxResult.Cancel)
{
Debug.WriteLine("Cancel");
}
}
}
}