Fork me on GitHub
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: 一般新建了一个Flutter项目,`primarySwatch`颜色被设置成`Colors.blue`,如果我们想要自定义一个HEX值,那么你可能会想到使用 `primarySwatch: Color.fromARGB(a, r, g, b)`. 不过这样是编译不过的。 因为`primarySwat 阅读全文
posted @ 2020-06-08 18:41 猫叔Vincent 阅读(6557) 评论(2) 推荐(1) 编辑
摘要: 之前开发一直在使用Production和QA环境,但是这两种环境下rest api 返回来的数据并不能保证各种极端的数据存在。 比如正常情况下服务器返回这样的json { "status": { "code": 0, "message": "It works!" }, "server": { "ti 阅读全文
posted @ 2020-06-02 23:23 猫叔Vincent 阅读(1741) 评论(0) 推荐(0) 编辑
摘要: 一开始想根据Button的Tag属性判断一些操作,于是写了 if (btn1.Tag.ToString().StartsWith("Menu") || btn2.Tag.ToString().StartsWith("Submenu")) return; 但是Tag属性可能为空,于是给Tag加上判空处 阅读全文
posted @ 2020-05-12 10:43 猫叔Vincent 阅读(827) 评论(0) 推荐(0) 编辑
摘要: https://starchart.cc/ 后面加上用户和repo的名字即可。 例如https://starchart.cc/hupo376787/A-Beautiful-UWP-Frame 最后拷贝最下面的markdown文本嵌入到Readme.md即可 阅读全文
posted @ 2020-05-04 14:27 猫叔Vincent 阅读(1878) 评论(0) 推荐(0) 编辑
摘要: 中文版请参考:UWP 模仿NetFlix首页效果 Long time ago, I wrote an article about how to made a horizontal listview with left/right scroll buttons. But I mentioned som 阅读全文
posted @ 2020-04-21 11:25 猫叔Vincent 阅读(554) 评论(0) 推荐(1) 编辑
摘要: Github的ReadMe文件暂时不支持Youtube视频文件,所以目前的做法都是用一个图片封面,它的链接🔗指向视频地址。 <a href="{video-url}" title="Link Title"><img src="{image-url}" alt="Alternate Text" /> 阅读全文
posted @ 2020-04-20 11:23 猫叔Vincent 阅读(3108) 评论(0) 推荐(2) 编辑
摘要: 阅读全文
posted @ 2020-04-20 10:13 猫叔Vincent 阅读(2035) 评论(5) 推荐(10) 编辑
摘要: 今天看新闻说Google Stadia开启了免费试用两个月的策略,有兴趣的可以去看看。 https://stadia.google.com/pro 阅读全文
posted @ 2020-04-09 16:52 猫叔Vincent 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 开发者选项 —— 硬件加速渲染 —— 模拟颜色空间 —— 全色盲 阅读全文
posted @ 2020-04-04 20:05 猫叔Vincent 阅读(1134) 评论(0) 推荐(0) 编辑
摘要: 最常见的就是一个TextBox,输入文字后,要自动隐藏键盘⌨。 Windows.UI.ViewManagement.InputPane.GetForCurrentView().TryHide(); 阅读全文
posted @ 2020-03-31 18:06 猫叔Vincent 阅读(299) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页