1

我将图像绑定SourceBitmapImage我的代码中的 a 但它没有显示出来。

xml:

<Window x:Class="bleh.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow"
    mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" d:DesignHeight="600" d:DesignWidth="600">
<Grid x:Name="LayoutRoot">
    <Image x:Name="current" HorizontalAlignment="Center" Stretch="None" VerticalAlignment="Center" Source="{Binding Picture}" />
</Grid>
</Window>

和我的cs:

public partial class MainWindow : Window, INotifyPropertyChanged
{
    /// <summary>
    /// Event implementing INotifyPropertyChanged interface.
    /// </summary>
    public event PropertyChangedEventHandler PropertyChanged;

    public BitmapImage Picture { get; set; }

    public MainWindow()
    {
        Uri uri = new Uri("Images/xpto.jpg", UriKind.Relative);
        this.Picture = new BitmapImage(uri);
        InitializeComponent();
        //setup();
    }
}

奇怪的是,窗口以图像的大小打开,但我看不到图像。我也尝试在 xaml 中手动分配,它可以工作。

current.source="Images/xpto.jpg"也行。

4

2 回答 2

1

您的视图 (MainWindow) 的 DataContext 未设置,因此没有要绑定的“图片”属性。如果您希望视图绑定到自身,请添加

this.DataContext = this;

到您的 MainWindow 构造函数。

于 2012-07-19T00:12:29.713 回答
0

您没有为属性 Picture: public BitmapImage Picture { get; 实现 INotifyPropertyChanged 放; 你必须这样做:

BitmapImage _picture;
public BitmapImage Picture {
get {return _picture;}
 set{
      _picture=value;
      OnPropertyChanged("Picture");
    }`
 }
于 2013-01-09T13:23:28.437 回答