Roaming dữ liệu trong Windows Store Apps
Bài viết này hướng dẫn cách roaming dữ liệu trong ứng dụng Windows Store sử dụng ApplicationData.
Đầu tiên, bạn tạo 2 file Roaming.xaml và Roaming1.xaml sử dựng Blank Page Template.
Code trang Roaming.xaml như sau:
Code trang Roaming.xaml.cs như sau:
public sealed partial class Roaming : Page
{
public Roaming()
{
this.InitializeComponent();
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
ApplicationDataContainer roamingSettings = ApplicationData.Current.RoamingSettings;
roamingSettings.Values["RoamingData"] = "This is data which has being roamed";
this.lblData.Text = "This is example of roaming data.";
}
private void Roaming_Click(object sender, RoutedEventArgs e)
{
this.Frame.Navigate(typeof(Roaming1));
}
}
Code trang Roaming1.xaml như sau:
Code trang Roaming1.xaml.cs như sau:
public sealed partial class Roaming1 : Page
{
public Roaming1()
{
this.InitializeComponent();
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
ApplicationDataContainer roamingSettings = ApplicationData.Current.RoamingSettings;
Object result = roamingSettings.Values["RoamingData"];
this.lblRoaming.Text = result.ToString();
}
}
Debug và xem kết quả:
[Nghean-Aptech]
Các tin mới hơn:
Hướng dẫn tích hợp giao diện trang quản trị SB Admin 2 vào Laravel 5.8.
Hướng dẫn tích hợp Google ReCaptcha v2 vào Laravel bằng curl.
Học lập trình React JS trong vòng 5 phút.
Sử dụng trình soạn thảo CKeditor tích hợp CKFinder với Laravel.
Hướng dẫn cài đặt Apache, PHP, MySQL, PHPMyAdmin trên Windows 10 và cấu hình SendMail.
Các tin cũ hơn:
Send mail trong Windows Store Applications.
Ngôn ngữ lập trình ứng dụng di động tốt nhất trong năm 2016.
Sự khác nhau trong qui trình tạo ứng dụng iOS và Android.
Học lập trình game cơ bản qua 4 trang web miễn phí.
10 Framework PHP tốt nhất dành cho lập trình viên.