WPF图像不会在应用程序中显示,但代码中没有错误

时间:2017-06-18 01:00:06

标签: c# .net wpf

我正在制作一个用户可以创建帐户并添加个人资料图片的应用程序。在我Main_Page Image Main_Page.xaml.cs我设置了Image.Source = image imageBitmapImage 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);
        }
    };
}]);

@EdPlunkett对WPF不熟悉,所以这可能导致我的问题吗? enter image description here

0 个答案:

没有答案