zoukankan      html  css  js  c++  java
  • Windows Phone 7 位图编程

    Image控件的写法

    <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);

            }

    窗体顶端

  • 相关阅读:
    linux 文件系统基本结构
    linux bash命令行基本操作
    U盘安装Centos6.2
    linux安装JDK
    linux重启和关闭系统命令
    eclipse安装反编译工具JadClipse
    Linux系统 Centos6 安装
    Linux 发展史
    计算机硬件
    网络 、osi 七层模型、tcp/ip 五层参考
  • 原文地址:https://www.cnblogs.com/linzheng/p/1948060.html
Copyright © 2011-2022 走看看