无法在 avalonia 中显示图像

Unable to display image in avalonia

<Image Name="ImageDisplay" 
               Source="{Binding CurrentImage}"
               Grid.Column="1"/>
public class NewWindowViewModel : ViewModelBase, INotifyPropertyChanged
    {
        public Bitmap CurrentImage = new Bitmap(Path.Combine(Environment.CurrentDirectory, @"Assets\LOGO.png"));
    }
public NewWindow()
        {
            InitializeComponent();
            _viewModel = new NewWindowViewModel();
            DataContext = _viewModel;
#if DEBUG
            this.AttachDevTools();
#endif
        }

图片不显示,输出returns错误:[Binding] Error in binding to 'Avalonia.Controls.Image'.'Source': 'Could not find a matching property accessor for 'CurrentImage' on 'RandomProject.ViewModels.NewWindowViewModel''

一切都应该工作正常,但事实并非如此。我是 Avalonia 的新手,我想摆脱 Windows 的限制,但我的第一印象并不好。

这里有官方文档https://docs.avaloniaui.net/docs/controls/image,但它充满了错误。当您的项目甚至无法构建时,这并不是很有帮助。

您还需要为此 属性 定义一个 getter 方法。

public Bitmap getCurrentImage()
{
    return CurrentImage;
}