文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>WP7-位图编程

WP7-位图编程

时间:2011-01-30  来源:linzheng

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">

            <Image Name="img" />

        </Grid>

 

 

 

通过System.Windows.Controls.Control.ManipulationStarted事件来进行调用这这个方法覆盖了System.Windows.UIElement.OnManipulationStarted(System.Windows.Input.ManipulationStartedEventArgs)。

 

加载网络的图片资源

protected override void OnManipulationStarted(ManipulationStartedEventArgs args)

        {

            Uri uri = new Uri("http://www.website.com/image/a.jpg");

            BitmapImage bmp = new BitmapImage(uri);

            img.Source = bmp;

 

            args.Complete();

            args.Handled = true;

            base.OnManipulationStarted(args);

        }

 

加载本地的图片资源

protected override void OnManipulationStarted(ManipulationStartedEventArgs args)

        {

            Uri uri = new Uri("../Images/Hello.png", UriKind.Relative);

            StreamResourceInfo resourceInfo = Application.GetResourceStream(uri);

            BitmapImage bmp = new BitmapImage();

            bmp.SetSource(resourceInfo.Stream);

            img.Source = bmp;

 

            args.Complete();

            args.Handled = true;

            base.OnManipulationStarted(args);

        }

窗体顶端

 

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载