1

我正在尝试在 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 将其转换为位图图像。现在,我正在为所有像素设置随机颜色,只是为了看看该绑定是否有效。但事实并非如此。下面我粘贴了一个显示图像的代码。

我确信位图图像已正确创建。我认为问题是不正确的绑定。

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;
     }
}

我的问题是,我做错了什么。

提前非常感谢。如果我错过了什么,请询问更多细节。

问候

4

1 回答 1

0

绑定设置为一个实例。我正在制作多个实例。

于 2013-07-02T12:48:49.600 回答