Chương trình mẫu cuối cùng trong chương này được gọi là QuickNotes. Nó được thiết kế để cung cấp một cách nhanh chóng để loại một số ghi chú và được bảo đảm rằng họ sẽ được giữ lại mà không có bất kỳ tiết kiệm rõ ràng hoặc tải. Đó là cơ bản một điện thoại Windows 7 phiên bản của Notepad, | The last sample program in this chapter is called QuickNotes. It is intended to provide a quick way to type some notes and be assured that they ll be retained without any explicit saving or loading. It s basically a Windows Phone 7 version of Notepad but only capable of working with a single file. The program also allows changing the font size so the QuickNotesSettings class for the program s application settings has two public properties named Text and Fontsize plus methods to save and load those properties in isolated storage Silverlight Project QuickNotes File public class QuickNotesSettings public QuickNotesSettings double rces PhoneFontSizeMedi umLarge public string Text set get public double FontSize set get public static QuickNotesSettings Load IsolatedStorageSetti ngs i soSettings onSettings Qui ckNotesSettings settings if QuickNotesSettings settings out settings settings new QuickNotesSettings return settings public void Save IsolatedStorageSetti ngs i soSettings onSettings isoSettings settings this As with the Jot program these setting are saved loaded and exposed in the App class Silverlight Project QuickNotes File public partial class App Application Application settings 291 public QuickNotesSettings AppSettings set get private void Appli cation_Launchi ng object sender Launchi ngEventArgs e AppSettings private void Appli cation_Activated object sender ActivatedEventArgs e AppSettings private void Appli cation_Deactivated object sender DeactivatedEventArgs e private void Application_Closing object sender ClosingEventArgs e The XAML file creates a multiline TextBox the size of the content area. Besides setting Textwrapping for multiline editing the markup also sets AcceptsReturn to true so that the .