我正在尝试在wpf应用程序中绑定图像。我正在使用vs2010。
我正在粘贴下面的代码并解释我所做的,有效的和无效的。
XAML代码:
<Image Name="newImage" ImageFailed="newImage_ImageFailed" HorizontalAlignment="Right" Width="auto" Height="auto" Margin="5" Source="{Binding imgSource}">
C#代码:
public MainWindow()
{
InitializeComponent();
arraytoImage atim = new arraytoImage();
newImage.DataContext = atim;
}
下面的代码位于不同的命名空间中,其中实现了arraytoImage
类。这个类采用cuda数组,创建一个位图,然后使用memorystream将其转换为bitmapimage。现在,我正在为所有像素设置一个随机颜色,只是为了查看该绑定是否有效。但事实并非如此。下面我粘贴了一个显示图像的代码。
我确信正确创建了bitmapimage。我认为问题是绑定不正确。
class arraytoImage : INotifyPropertyChanged
{
// displays images (focused files)
private BitmapImage bitmapImage = new BitmapImage();
private BitmapImage testim = new BitmapImage();
public BitmapImage arraytoImageCon(cuFloatComplex[] dataIn, int wid, int ht)
{
//code that generates bitmapimage
}
public BitmapImage imgSource
{
get { return testim1; }
set
{
if (testim1 != value)
{
testim1 = value;
OnPropertyChanged("imgSource");
}
}
}
#region INotifyPropertyChanged implementation
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
handler(this, new PropertyChangedEventArgs(propertyName));
}
#endregion
}
编辑:调用arrayToImageCon:
public class ReadRawFiles
{
//Tons of code
public void focusdata()
{
//tons of code
arraytoImage atoi = new arraytoImage();
BitmapImage tmp= atoi.arraytoImageCon(datafft_azi, nazimuth,nrange);
atoi.imgSource=tmp;
}
}
我的问题是,我做错了什么。
提前多多感谢。如果我错过了什么,请详细询问。
此致
答案 0 :(得分:0)
绑定设置为一个实例。我正在制作多个实例。