Imagara 2 年之前
父节点
当前提交
318af9d9bc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MyTests/Pages/ProfilePage.xaml.cs

+ 1 - 1
MyTests/Pages/ProfilePage.xaml.cs

@@ -19,7 +19,7 @@ namespace MyTests.Pages
             FIOLabel.Content = user.Surname + " " + user.Name + " " + user.Patronymic; 
             ProfileImage.Source = user.Image == null ?
                 new BitmapImage(new Uri("../Resources/StandartImage.png", UriKind.RelativeOrAbsolute)) :
-                ProfileImage.Source = ImagesFunctions.NewImage(user);
+                ImagesFunctions.NewImage(user);
             EmailBox.Text = user.Email;
             InfoBox.Text = user.Info;
             if (user != Session.User)