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;

namespace Brahma_Initiative作业
{
    public partial class MainPage : PhoneApplicationPage
    {
        // Constructor
        public MainPage()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            string memebers ="";
            memebers = textBox1.Text;

            if (memebers == "4 8 15 16 23".ToString())
            {
                textBlock2.Text = "你成功的输入了密码:";
            }
            else
            {
                textBlock2.Text = "输入失败GAME OVER!!!!!!";

            }

 

        }
    }
}

posted on 2012-03-06 18:38  L12619  阅读(104)  评论(1编辑  收藏  举报