2
在WP7中使用相對uri路徑顯示任何圖像非常簡單。 但加載文本文件成爲一個大問號。在WP7中加載文本文件的URI是什麼?
請看看圖片,並嘗試幫助如何看起來像URI文件作爲字符串變量。
Dim S As String
Dim U As New Uri("file:///Family_christmas;component/database/de/1.txt", UriKind.Absolute)
Dim sr As New IO.StreamReader(U.LocalPath, System.Text.Encoding.Unicode)
S = sr.ReadToEnd
sr.Close()
Me.Title = S.Split(Environment.NewLine)(0)
Me.Text = S.Substring(Me.Title.Length + Environment.NewLine.Length)
*解決了WAY *
申報文件的ressource不是內容。然後使用下面的代碼:
Dim S As String
Dim U As New Uri("database/de/1.txt", UriKind.Relative)
Dim streamInfo As Windows.Resources.StreamResourceInfo = Application.GetResourceStream(U)
Dim sr As New IO.StreamReader(streamInfo.Stream, System.Text.Encoding.Unicode)
S = sr.ReadToEnd
sr.Close()
非常感謝您的快速回復。你讓我今天一整天都感覺很好! – Nasenbaer