我想使用此链接https://github.com/stormlion227/ImageCropper.Forms的nuget ImageCropper.Forms。我已经完成了设置,但无法运行页面示例,它是下一个:
显示ImageCropper页面。
new ImageCropper()
{
Success = (imageFile) =>
{
Device.BeginInvokeOnMainThread(() =>
{
imageView.Source = ImageSource.FromFile(imageFile);
});
}
}.Show(this);
告诉我imageViewis没有声明,我想我必须声明一个图像并将其用于imagesource但是没有用。有人有想法吗?