示例#1
0
        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            string checkLang = (string)VarGlobal.settings["lingua"];

            if (checkLang == "Italia")
            {
                Instr.Text = "Premi sul  polpo, delfino e squalo.";
            }
            else
            {
                Instr.Text = "Tap on the octopus, dolphin and shark.";
            }
            VarGlobal.stopWatch.Start();
            Go.Begin();
            onde.Begin();
        }
示例#2
0
        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            count = 0;
            string checkLang = (string)VarGlobal.settings["lingua"];

            if (checkLang == "Italia")
            {
                Instr.Text = "Premi su tutti i polpi.";
            }
            else
            {
                Instr.Text = "Tap on all octopuses.";
            }
            Go.Begin();
            onde.Begin();
        }