摘要: / 64 00 64 00 77 BE 9F 1A 2F DD 5E 40 equipnum = 6553700 equipnum = 6553700 equipnum = 6553700 equipnum = 6553700 / private void button4_Click(object 阅读全文
posted @ 2020-05-11 10:18 windlog 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 1、不是必须的场景,不要抛出异常 2、底层异常不要直接抛给上层方法 3、在程序编写的期间,预估一些场景,并对这些场景做数据校验和提示,而不是使用异常 4、在捕获异常时,最好编写相应的处理逻辑,而不是为了程序不报错直接写一个空的catch块 5、不要把异常当做额外的返回值处理 阅读全文
posted @ 2020-05-06 09:10 windlog 阅读(421) 评论(0) 推荐(0) 编辑
摘要: . 当前路径 .. 父路径 当前节点下所有子节点 element[1] element[1]//specification[1]//mass//text() 1.007825 element[1]//specification[1]//mass 1.007825 element[@Type="Non 阅读全文
posted @ 2020-05-02 17:12 windlog 阅读(263) 评论(0) 推荐(0) 编辑
摘要: C 接口定义 注意事项 1、接口不能定义字段 2、接口可以声明属性 3、接口可以声明方法 4、接口可以声明事件 5、接口声明的属性、方法、事件前面不能添加public 示例如下↓ interface MyInterface { //int i; //接口不能包含字段 //接口不能包含字段 // Ev 阅读全文
posted @ 2020-04-27 09:35 windlog 阅读(1095) 评论(0) 推荐(0) 编辑
摘要: 右侧下拉按钮如何隐藏 1. 修改ControlBox属性的Visible为false 2. 修改ControlBox下面MenuBox的AutoHide属性为true 样式选择Office2010BackstageBlue 关联RibbonControl的系统按钮 设置BackstageTab为su 阅读全文
posted @ 2020-03-20 13:44 windlog 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 1、实现接口到派生方法: 2、查看派生方法父接口: 3、全屏: 4、去除区分大小写 去掉 前面的复选框 5、启动调试 Remote指定调试端口:9527 `java jar agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=95 阅读全文
posted @ 2020-03-04 18:52 windlog 阅读(248) 评论(0) 推荐(0) 编辑
摘要: chloe orm框架 http://www.52chloe.com/ styled mvvm框架 https://www.cnblogs.com/waku/p/6879809.html https://mahapps.com/ 这个是三方控件 Install Package MahApps.Met 阅读全文
posted @ 2020-03-04 18:48 windlog 阅读(96) 评论(0) 推荐(0) 编辑
摘要: MySql的安装 下载地址: "https://downloads.mysql.com/archives/community/" `rpm ivh mysql57 community release el7 3.noarch.rpm` 查找安装位置: `rpm ql mysql community 阅读全文
posted @ 2020-02-24 16:35 windlog 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 第一步: _InitExe windows调用Exe的入口 _StartExe InitUnits 第二步: InitControls的initialization部分 TApplication.Create AllocateHWnd AllocateHWnd MakeObjectInstance 阅读全文
posted @ 2020-02-23 21:05 windlog 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 对象实例数据链表结构 对象实体块链表结构 // 窗口回调处理过程指针 //实体对象数组 var InstBlockList: PInstanceBlock; `function MakeObjectInstance(const AMethod: TWndMethod): Pointer;` `{$I 阅读全文
posted @ 2020-02-23 16:20 windlog 阅读(142) 评论(0) 推荐(0) 编辑