Fork me on GitHub
摘要: 之前再网上找的,改了一下,开源了 先上效果图: 项目地址:https://github.com/hupo376787/GetChineseSpell.git 阅读全文
posted @ 2017-10-06 22:39 猫叔Vincent 阅读(901) 评论(0) 推荐(0) 编辑
摘要: 上一年做了很久的项目,是一个完整版的视频播放器,强大、美观!!! 现在转投UWP了,决定开源这个项目。 在你下载本项目之前,请仔细阅读每一行字,以免以后引起不必要的法律纠纷。 本项目最终解释权归本人所有。 Thanks To : Microsoft Visual Studio, SQLite, Ne 阅读全文
posted @ 2017-10-04 22:47 猫叔Vincent 阅读(708) 评论(0) 推荐(1) 编辑
摘要: 有时候往数据库里面存储了一些图片,但是如果不写读取程序的话,就不知道存储的对不对。 或者查看SQL数据库里面二进制看不懂,这个看图片很直观的。 就需要SQL Image Viewer这么一个🐮B的软件了 自己去找下载地址吧,我没有破解版。 阅读全文
posted @ 2017-10-04 00:13 猫叔Vincent 阅读(1063) 评论(2) 推荐(0) 编辑
摘要: 上一篇说显示一张图片到Image控件,比较简单。 那个假设我Image控件有图片了,想保存到本地,这个就要花心思了,不过也不复杂的。。。 阅读全文
posted @ 2017-10-03 23:35 猫叔Vincent 阅读(1245) 评论(1) 推荐(0) 编辑
摘要: 要想显示图片,前提是要有一个空间的啦 然后一个响应选择图片得事件,注意使用asynchronous方法哦 注意,需要勾选“图片库”的权限哦。 阅读全文
posted @ 2017-10-03 23:27 猫叔Vincent 阅读(1751) 评论(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 阅读(375) 评论(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 阅读(294) 评论(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 阅读(701) 评论(0) 推荐(0) 编辑