Hi,
I am working on a Xbap application with the PersistenceFramwork (the latest version of WPF controls). It all work fine when I have only single xbap page, but if i have multiple pages in same application, it fails.
After I assigned different page to the "Mainwindow.Content" and try to find those settings that I stored in previous page, it always return 0. But if I go back to previous page, I do get those settings.
How can I retrieve those settings in different pages?
Code that I used:
Dim m_isoStorageProvider As New Telerik.Windows.Persistence.Storage.IsolatedStorageProvider()
Dim arrStorageFiles As New List(Of String)
arrStorageFiles.Add("GridView1")
arrStorageFiles.Add("GridView2")
m_isoStorageProvider.LoadFromStorage(arrStorageFiles.ToArray)
Thanks
Chris
I am working on a Xbap application with the PersistenceFramwork (the latest version of WPF controls). It all work fine when I have only single xbap page, but if i have multiple pages in same application, it fails.
After I assigned different page to the "Mainwindow.Content" and try to find those settings that I stored in previous page, it always return 0. But if I go back to previous page, I do get those settings.
How can I retrieve those settings in different pages?
Code that I used:
Dim m_isoStorageProvider As New Telerik.Windows.Persistence.Storage.IsolatedStorageProvider()
Dim arrStorageFiles As New List(Of String)
arrStorageFiles.Add("GridView1")
arrStorageFiles.Add("GridView2")
m_isoStorageProvider.LoadFromStorage(arrStorageFiles.ToArray)
Thanks
Chris