上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: 1.标准的层级结构 ScrollRect->ViewPort->Content,Viewport负责显示区域的大小一般和Mask一起配合使用,Content使用Layout来布局,如果想使用代码来自动定位显示位置需要在Content加上Content size filter. 2.ScrollRec 阅读全文
posted @ 2019-01-08 15:11 非法关键字 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 可以很方便的扩展为目录中修改文件的内容 1.修改前 2.修改后 阅读全文
posted @ 2018-10-25 16:24 非法关键字 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 猫叔博客 https://www.maoshu.cc/ 大神RehabMan https://bitbucket.org/RehabMan/ dsdt/ssdt打补丁译文 https://blog.csdn.net/wr132/article/details/54798754 黑果小兵博客 http 阅读全文
posted @ 2018-10-25 11:27 非法关键字 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1.python tcp server代码: 终端显示: 阅读全文
posted @ 2018-10-21 20:14 非法关键字 阅读(1902) 评论(0) 推荐(0) 编辑
摘要: 1.如果有重载__iter__方法则表示类是一个Iterable 2.如果有重载__next__方法则表示类是一个Iterator 3.可以使用isinstance(obj, Iterable)和isinstance(obj, Iterator)来判断一个实例是否是Iterable和Iterator 阅读全文
posted @ 2018-10-21 20:13 非法关键字 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1.Python的生成器是一种特殊的迭代器 程序输出: 1 0 2 1 3 1 4 2 5 3 6 5 7 8 8 13 9 21 10 34 11 12 0 13 1 14 1 15 2 16 3 17 5 18 8 19 13 20 21 21 34 22 55 23 89 24 144 25 阅读全文
posted @ 2018-10-21 20:13 非法关键字 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1.关于ssh免密码登陆的ssh-keygen, ssh-copy-id的使用, 然后使用ssh-copy-id user@remote将公钥传给服务器, 以及别名 2.将Pycharm添加到xubuntu的快捷启动 或者打开pycharm,tools/create desktop entry... 阅读全文
posted @ 2018-10-21 20:12 非法关键字 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1.touch命令的使用 2.使用(cd -)可以在上次使用的目录来回切换 3.ls通配符的使用*代表任意字符和任意个字符, ?代表任意一个字符, [12345]中的任意一个字符, [1-5]中的任意一个字符. 4.ls的-h, -h, --human-readablewith -l and/or 阅读全文
posted @ 2018-10-21 20:11 非法关键字 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 直接上码 阅读全文
posted @ 2018-10-09 18:33 非法关键字 阅读(1353) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装最新版mono,https://www.mono-project.com/ 2.添加头文件路径C:\Program Files\Mono\include\mono-2.0,添加库路径C:\Program Files\Mono\lib,添加依赖项mono-2.0-sgen.lib 3.c# 阅读全文
posted @ 2018-09-21 14:46 非法关键字 阅读(2120) 评论(0) 推荐(0) 编辑
摘要: 文章中所有需要使用到的软件和资源在文章末尾的网盘连接中有下载 Run the DISM GUI Tool Right-click on DISM GUI.exe and select Run as Administrator. Follow these steps: 1. Mount install 阅读全文
posted @ 2018-08-31 20:05 非法关键字 阅读(3578) 评论(0) 推荐(0) 编辑
摘要: MS Windows: 常用命令: 查看帮助 mongod help/mongod -h 查看版本 mongod --version 启动/停止/重启服务 net start/stop/restart mongodb 配置: 创建必要目录与文件: D:\mongodb\data\db D:\mong 阅读全文
posted @ 2018-08-20 15:21 非法关键字 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1.代码结构图 2.SmartTimer 模块Entity: 1 using System; 2 3 namespace ETModel 4 { 5 [ObjectSystem] 6 public class SmartTimerAwakeSystem: AwakeSystem<SmartTimer 阅读全文
posted @ 2018-08-20 00:00 非法关键字 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 初始化事件 UILoading组件 tkBootComponent中的场景切换代码 tkBootComponent 1 using System; 2 using System.Threading.Tasks; 3 using DG.Tweening; 4 using ETModel; 5 usin 阅读全文
posted @ 2018-08-16 00:17 非法关键字 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 1.打开注册表找到键值:计算机\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run 2.添加字符串值:StartJetServer,添加字符串内容:powershell -executionpolicy unrestrict 阅读全文
posted @ 2018-08-07 17:25 非法关键字 阅读(1148) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页