Isolated Storage
之所以叫isolated,是因為一個app的資料不能被另一個app訪問。
IsolatedStorageSettings儘管有一個Save方法,但其實沒有必要調用它。因為程式在close或deactive的時候都會儲存資料。唯一說得過去的調用Save方法的時候,是因為app崩潰退出而遺失資料。
app升級後,Isolated Storage中的資料保留。app卸載後,資料刪除。
Isolated Storage沒有大小限制,只受手機儲存大小的限制。
顏色選擇控制項
Shared/ColorPicker目錄下有一個很好用的顏色選擇控制項。
使用自訂字型
<TextBlock FontFamily="Fonts/pendule_ornamental.ttf#pendule ornamental" Opacity=".1"> <!-- It's important not to have whitespace between the runs!--> <Run x:Name="TimeBackgroundRun">88:88</Run><Run x:Name="SecondsBackgroundRun">88</Run> </TextBlock>
首先把字型檔加入項目中,在XAML中的文法是:
字型檔路徑#字型名
字型檔ttf在windows下能直接開啟、安裝。
Value Converter
主要用於:在資料繫結中用把一種類型的轉換成另一種類型。
一個能夠作為轉換器的類型必須實現IValueConverter介面,即Convert和ConvertBack兩個方法。
在單向綁定時因為不需要ConvertBack,可以讓ConvertBack方法直接返回DependencyProperty.UnsetValue。
下面是實現這兩個方法的一個例子:
public object Convert(object value, Type targetType, object parameter, CultureInfo culture){ DateTimeOffset date = (DateTimeOffset)value; // Return a custom format return date.LocalDateTime.ToShortDateString() + " " + date.LocalDateTime.ToShortTimeString();}public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture){ return DependencyProperty.UnsetValue; }
在XAML裡可直接指定轉換器,在指定之前,需要在資源字典裡建立一個轉換器的執行個體。
<phone:PhoneApplicationPage.Resources> <local:DateConverter x:Key="DateConverter"/> </phone:PhoneApplicationPage.Resources>
然後在XAML裡引用:
<TextBlock Text="{Binding Modified, Converter={StaticResource DateConverter}}" />
如果要在XAML中指定parameter和culture則這樣寫:
檔案讀寫
public string Filename { get; set; }public void SaveContent(string content){ using (IsolatedStorageFile userStore = IsolatedStorageFile.GetUserStoreForApplication()) using (IsolatedStorageFileStream stream = userStore.CreateFile(this.Filename)) using (StreamWriter writer = new StreamWriter(stream)) { writer.Write(content); }}public string GetContent(){ using (IsolatedStorageFile userStore = IsolatedStorageFile.GetUserStoreForApplication()) { if (!userStore.FileExists(this.Filename)) { return string.Empty; } else { using (IsolatedStorageFileStream stream = userStore.OpenFile(this.Filename, FileMode.Open)) using (StreamReader reader = new StreamReader(stream)) { return reader.ReadToEnd(); } } }}public void DeleteContent(){ using (IsolatedStorageFile userStore = IsolatedStorageFile.GetUserStoreForApplication()) { userStore.DeleteFile(this.Filename); }}