Fork me on GitHub

随笔分类 -  UWP

摘要:上一篇说显示一张图片到Image控件,比较简单。 那个假设我Image控件有图片了,想保存到本地,这个就要花心思了,不过也不复杂的。。。 阅读全文
posted @ 2017-10-03 23:35 猫叔Vincent 阅读(1249) 评论(1) 推荐(0) 编辑
摘要:要想显示图片,前提是要有一个空间的啦 然后一个响应选择图片得事件,注意使用asynchronous方法哦 注意,需要勾选“图片库”的权限哦。 阅读全文
posted @ 2017-10-03 23:27 猫叔Vincent 阅读(1767) 评论(0) 推荐(0) 编辑
摘要:var pfn = Package.Current.Id.FamilyName; await Launcher.LaunchUriAsync(new Uri("ms-windows-store://review/?PFN=" + pfn)); 阅读全文
posted @ 2017-10-02 16:32 猫叔Vincent 阅读(233) 评论(0) 推荐(1) 编辑
摘要:public static async Task FeedbackAsync(string address, string subject, string body) { if (address == null) return; var mailto = new Uri($"mailto:{address}?subject={subject}&body={body}"); await Launc... 阅读全文
posted @ 2017-10-02 16:31 猫叔Vincent 阅读(376) 评论(0) 推荐(0) 编辑
摘要:在ListView中模板的宽度默认不会根据listView的宽度改变为改变,这需要更改一下设置,重点在于设置HorizontalContentAlignment的拉伸模式。注意是HorizontalContentAlignment,而不是HorizontalAlignment。 阅读全文
posted @ 2017-10-02 16:27 猫叔Vincent 阅读(348) 评论(0) 推荐(0) 编辑
摘要:①KnownFolders KnownFolders.PicturesLibrary 等等列举 ②ApplicationData.Current ApplicationData.Current.LocalFolder 等等列举 阅读全文
posted @ 2017-10-02 16:25 猫叔Vincent 阅读(296) 评论(0) 推荐(0) 编辑
摘要:public static Boolean Windows10Build10240 => ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 1, 0); public static Boolean Windows10Build10586 => ApiInfo... 阅读全文
posted @ 2017-10-02 16:21 猫叔Vincent 阅读(702) 评论(0) 推荐(0) 编辑
摘要:给Image外面包裹一个ScrollViewer,你会回来感激我的。 哦,对了,PC上需要按住Ctrl键,滑动鼠标滑轮即可;手机上双指就可以缩放。 阅读全文
posted @ 2017-10-02 16:20 猫叔Vincent 阅读(464) 评论(0) 推荐(0) 编辑
摘要:参考了 http://www.cnblogs.com/zhanggaoxing/p/6403430.html,并加以改进。 最终效果::: Thumb 的原生事件 DragStarted,DragDelta,DragCompleted。DragStarted 和字面意思差不多,开始拖动的时候发生的。 阅读全文
posted @ 2017-10-02 16:13 猫叔Vincent 阅读(1164) 评论(0) 推荐(0) 编辑
摘要:这一节,顾名思义,即使你要共享数据给别人,你是数据的提供者。分两步即可1、直接复制代码 2、最后 阅读全文
posted @ 2017-10-02 16:07 猫叔Vincent 阅读(337) 评论(0) 推荐(0) 编辑
摘要:UWP上共享,分为接收者(别人共享数据给你,你接收了,然后在做你的处理)和发送者(你给别人发送数据,就像你的App支持图片共享到微信好友或者朋友圈那样,虽然UWP上的微信并不支持这样子) 很简单(参考Windows on Github\Windows-universal-samples\Sample 阅读全文
posted @ 2017-10-02 16:03 猫叔Vincent 阅读(525) 评论(0) 推荐(0) 编辑
摘要:错误 CS4036 “IAsyncOperation<StorageFile>”不包含“GetAwaiter”的定义,并且找不到可接受类型为“IAsyncOperation<StorageFile>”的第一个参数的扩展方法“GetAwaiter”(是否缺少针对“System”的 using 指令?) 阅读全文
posted @ 2017-10-02 15:58 猫叔Vincent 阅读(3152) 评论(0) 推荐(0) 编辑
摘要:从十月一日起(UTC协调世界时),至十月十五,小冰科技所有UWP产品免费半个月!!!!!! 注意是UTC哦,中国区,比UTC早8个小时,要等到十月一号早晨八点开始。。。 现在小冰科技旗下一共发布了 5 款UWP产品(还有一个神秘的令人兴奋的App在紧张研发中) ① Exif 信息 Exif 信息 W 阅读全文
posted @ 2017-10-01 14:11 猫叔Vincent 阅读(664) 评论(0) 推荐(0) 编辑