博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows Phone 8弹窗
阅读量:5020 次
发布时间:2019-06-12

本文共 1328 字,大约阅读时间需要 4 分钟。

新建一个UserControl,添加到相应位置 

前台代码

相应的后台代码

namespace ImageProcessing{public partial class MessagePhoto : UserControl{ public MessagePhoto(){InitializeComponent();//************让gridbox拉伸*********this.gridBox.Width = Application.Current.Host.Content.ActualWidth;}//获取图像void PictureCaptureTask_Completed(object sender, PhotoResult e){if (e.TaskResult == TaskResult.OK){BitmapImage bmp = new BitmapImage();bmp.SetSource(e.ChosenPhoto);}}//打开相机private void btnCamera_Click(object sender, RoutedEventArgs e){CameraCaptureTask cameraCaptureTask = new CameraCaptureTask();if (cameraCaptureTask != null){cameraCaptureTask.Show();}cameraCaptureTask.Completed += new EventHandler
(PictureCaptureTask_Completed);} //打开相册private void btnAlbum_Click(object sender, RoutedEventArgs e){PhotoChooserTask photoChooserTask = new PhotoChooserTask();if (photoChooserTask != null){photoChooserTask.Show();}photoChooserTask.Completed += new EventHandler
(PictureCaptureTask_Completed);}}}
后台代码

主页进行调用

Popup messagebox = new Popup();messagebox.Child = new MessagePhoto();messagebox.IsOpen = true;
主页调用

 

转载于:https://www.cnblogs.com/ZXdeveloper/p/3580956.html

你可能感兴趣的文章
leetcode [238]Product of Array Except Self
查看>>
关于抽象
查看>>
博客里程
查看>>
【做题】HDU6331 Walking Plan——矩阵&分块
查看>>
使用doxmate生成文档
查看>>
5.html5中的路径表示
查看>>
EF-CodeFirst-1 玩起来
查看>>
Oracle--数据更新
查看>>
Sublime Text 3 快捷键总结
查看>>
VBS - 打开Excel和一些addin
查看>>
实时搜索的五个开源解决方案
查看>>
Leetcode-5051 Valid Boomerang(有效的回旋镖)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
Codeforces Gym 100015G Guessing Game 差分约束
查看>>
使用常量 变量 时间上的区别
查看>>
大脑皮层是如何工作的 《人工智能的未来》(<On intelligence>)读书笔记
查看>>
重力感应操控(unity iphone)
查看>>
JDBC
查看>>
HTTP错误500.19 - Internal Server Error解决方法
查看>>
python的协程和_IO操作
查看>>