-2

値のページの最後の行にエラーがあります。プログラムが行うことは、画面上で何回クリックしたかをカウントすることです。

私を助けてください。

値を整数として追加しようとしましたが、値がセーブカウントに問題が発生する前に何も起こりませんでした。その後、プリベットを整数として追加することで修正しました。この方法で解決すると思います。

using で何かを追加する必要があると思いますか?

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.Windows.Navigation;
using System.Windows.Threading;


namespace TapToCount
{
    public partial class MainPage : PhoneApplicationPage
    {
        private int count;
        private int savedCount;
        // Constructor
        public MainPage()
        {
            InitializeComponent();
        }
        protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
        {
            base.OnMouseLeftButtonDown(e);
            this.count++;
            this.CountTextBlock.Text = this.count.ToString("N0");
        }
        private void ResetButton_Click(object sender, RoutedEventArgs e)
        {
            this.count = 0;
            this.CountTextBlock.Text = this.count.ToString("N0");
        }
        protected override void OnNavigatedFrom(NavigationEventArgs e)
        {
            base.OnNavigatedFrom(e);

            // Persist state when leaving for any reason (Deactivated or Closing):
            this.savedCount.value= this.count;
        }
    }
}
4

1 に答える 1

1

savedCountですintvalueプロパティやフィールドはありません。使うだけ

this.savedCount = this.count

私はそれがあなたが求めている結果をあなたに与えるだろうとは思わないが. savedCountあなたはおそらく静的にしたいでしょう

于 2012-04-09T13:13:08.583 に答える