Csharp Windows手机任务完成

时间:2015-06-03 12:36:49

标签: c# windows-phone-8.1

我正在使用Visual Studio 2013创建Windows通用应用程序。我正在尝试完成this article之类的操作。 在主页面上我有很多照片。点击其中一张图片后,用户会转到另一个页面,其中有一个复选框。 用户选中复选框后,我必须更改主页上的图像。

我不知道这段代码是否正确,但我正在为第二页做这样的事情

private void CheckBox_Checked(object sender, RoutedEventArgs e)
{
    points.Text = (Convert.ToInt32(points.Text) + 4).ToString();

    var currentCheckBoxItem = sender as CheckBox;
    if (currentCheckBoxItem.IsChecked == true)
    {
      otra.bedre1.Source = (new Uri("ms-appx:///Assets/complete.png", UriKind.Absolute));
//     }

但这是主页的代码,可以选择任务:

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    bedre1.Source = ImageSource;

}

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

您需要将名称和Checkstatus存储为SQlite数据库中的字段,以便即使在应用关闭后也可以使用它。所以你需要做一些研究。