我正在制作一个用户可以创建帐户并添加个人资料图片的应用程序。在我Main_Page
Image
Main_Page.xaml.cs
我设置了Image.Source = image
image
。 BitmapImage
是 public Main_Page()
{
BitmapImage image = new BitmapImage(new Uri(Environment.CurrentDirectory + @"\Images\" + ApplicationServices.User.XMLFile.SelectSingleNode(@"User/ProfilePicture").InnerText.Trim(), UriKind.Relative));
Profile_Image_Exercise.Source = image;
Profile_Image_Nutrition.Source = image;
Profile_Image_Statistics.Source = image;
}
。我没有编译错误,所以应该显示图像。我在图像的路径上做了一个手表,它是正确的!我将包含代码供参考。
app.directive('myDir', ['$parse', function ($parse) {
return {
restrict: 'EA',
scope: true,
link: function (scope, elem, attrs) {
if(!attrs.ngModel) {return;}
var model = $parse(attrs.ngModel);
scope.model = model(scope);
}
};
}]);