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

            }

    窗体顶端

  • 相关阅读:
    DeepZoomPix照片浏览的新体验
    SilverTouch系列 SilverAlbum Ver1.0
    手把手玩转win8开发系列课程(28)
    百度之星试题每周一练
    手把手玩转win8开发系列课程(27)
    WP7和Android控件对照表
    门户网站负载均衡技术的六大新挑战
    RA_CUST_TRX_LINE_GL_DIST_ALL
    XML PUBLISHER输出excel存在科学计数
    中文字符按拼音排序
  • 原文地址:https://www.cnblogs.com/linzheng/p/1948060.html
Copyright © 2020-2023  润新知