我想使用 MahApps PanoramaControl 来显示一堆照片。但是,我看到控件中只出现了字符串路径,如果您查看我的代码,这将是正确的。但我不知道如何让它显示图像而不是链接。
xml:
<Controls:Panorama Grid.Row="2"
Grid.ColumnSpan="4"
ItemBox="140"
ItemsSource="{Binding PhotoCollection, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
视图模型:
string[] filePaths = Directory.GetFiles(@"D:\Google Drive\Images\Backgrounds");
test = new PanoramaGroup("My Photo's", filePaths);
PhotoCollection = new ObservableCollection<PanoramaGroup> { test };
有人知道如何让它显示图像吗?控件已加载,因为我可以在文本上横向滚动。他们的网站上没有太多关于如何让它工作的文档......
或者您是否在为 4.0 框架使用其他 Metro 风格库?