microsoft surface实现图片多点操作更简单

下载安装 Microsoft 下载中心
SurfaceRuntime.msi  
SurfaceSDK.msi

首先新建Microsoft Surface 2.0的一个项目:

前台添加:<s:ScatterView x:Name="ScatterView1">
            <s:ScatterView.ItemTemplate>
                <DataTemplate>
                    <Image Source="{Binding}"/>
                </DataTemplate>
            </s:ScatterView.ItemTemplate>
        </s:ScatterView>

后台代码添加: this.ScatterView1.ItemsSource = Directory.GetFiles(
                    Environment.GetFolderPath(Environment.SpecialFolder.MyPictures), "*.jpg");

运行效果:

posted @ 2011-08-31 11:46  Xingsoft  阅读(293)  评论(0编辑  收藏  举报