コード例 #1
0
ファイル: notes_page.xaml.cs プロジェクト: whzvee/evennote
        public void RefreshStatusBackup()
        {
            int    temp   = Evennote.GetCountNotesFromDB();
            string result = "";

            if (temp == -1)
            {
                result = "You are offline.";
            }
            else
            {
                result = String.Format("Backup: {0}", temp);
            }

            statusBackup.Content = result;
        }