A damn at han’s Windows phone book 筆記(20、21、22:Isolated Storage)

來源:互聯網
上載者:User

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);     }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.