We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using System; using GalaSoft.MvvmLight.Command; using HandyControl.Controls; namespace HandyControlDemo.ViewModel { public class ImageBrowserDemoViewModel { public RelayCommand OpenImgCmd => new Lazy<RelayCommand>(() => new RelayCommand(() => new ImageBrowser(new Uri("C:\\Users\\cuili\\Pictures\\DSCF1221.JPG") ).Show())).Value; } }
如果打开一张比较大的图:
此时显示的比例是24%,但图像实际是1:1的尺寸。
这时候不能立即使用滚轮缩小图像(向用户方向滚动),只能向远离用户方向滚动(这个操作应该是放大图片,但实际缩小了一些)。 然后才能正常使用滚轮放大缩小。
The text was updated successfully, but these errors were encountered:
6ce9130
No branches or pull requests
如果打开一张比较大的图:
此时显示的比例是24%,但图像实际是1:1的尺寸。
这时候不能立即使用滚轮缩小图像(向用户方向滚动),只能向远离用户方向滚动(这个操作应该是放大图片,但实际缩小了一些)。 然后才能正常使用滚轮放大缩小。
test_imagebrowserbug.mp4
The text was updated successfully, but these errors were encountered: