上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 40 下一页
摘要: 有些窗口标题中含有中文,可能识别不出来,可以改一下 SetWindowTextW GetWindowTextW 设置: SetWindowTextW( (HWND)0x00370868/*窗口句柄*/, L"newTitle123231"/*新标题*/ ); 获取: int GetWindowTex 阅读全文
posted @ 2020-07-13 18:59 Ajanuw 阅读(2972) 评论(0) 推荐(0) 编辑
摘要: ## 创建 ListMoreDataMixin ```js // 由于没有超类的限制这里要判断下 function ____checkGetData(context) { if (!context.getData || typeof context.getData !== "function") { 阅读全文
posted @ 2020-07-02 17:10 Ajanuw 阅读(4811) 评论(0) 推荐(0) 编辑
摘要: vue mixins 完整代码 vue 自带的mixin如果钩子函数重复会被组合为一个数组,然后全部从mixin → widget自动执行。 这里我们改为override的模式,让重写的钩子需要手动调用super去执行(并不强制) 修改钩子 function dedupeHooks(hooks) { 阅读全文
posted @ 2020-07-02 16:18 Ajanuw 阅读(2159) 评论(0) 推荐(0) 编辑
摘要: NASM官网 下载NASM NASM在线HTML文档 下载golink golink文档 NASM教程 in windows x64调用约定 x86调用约定 编码样式约定 在编写nasm时数字默认为10进制 x86控制台程序 objexe.asm: ; equ 定义常量 STD_OUTPUT_HAN 阅读全文
posted @ 2020-07-01 16:42 Ajanuw 阅读(3656) 评论(0) 推荐(2) 编辑
摘要: https://www.npmjs.com/package/xlsx 安装依赖 npm install xlsx Example import * as XLSX from "xlsx"; export const Sheet1 = "Sheet1"; export const Sheet2 = " 阅读全文
posted @ 2020-07-01 12:56 Ajanuw 阅读(482) 评论(0) 推荐(0) 编辑
摘要: https://uniapp.dcloud.io/component/scroll-view <view class="flex1"> <scroll-view style="height: 100%;" :scroll-top="scrollTop" scroll-y="true" scroll- 阅读全文
posted @ 2020-07-01 10:48 Ajanuw 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 安装 vue-io-directive 可以减少使用 emit,组件自带的v-model好像也只能设置一个 npm i vue-io-directive 使用 import Vue from 'vue' import { VueIoDirective } from "vue-io-directive 阅读全文
posted @ 2020-06-30 16:35 Ajanuw 阅读(887) 评论(0) 推荐(0) 编辑
摘要: movbe MOVBE 目标操作数,源操作数 复制源操作数的数据,交换字节后,移动数据 假如: movbe eax,(float)1000.0 eax == 0x00007A44 movbe eax,0x00007A44 // mov eax,0x447A0000 交换字节,移动数据 eax == 阅读全文
posted @ 2020-06-24 12:25 Ajanuw 阅读(670) 评论(0) 推荐(0) 编辑
摘要: Paste Image 在编写md需要插入图片,这个插件可以将粘贴板的图片保存到本地资源 假如我在/readme.md中编写文档,我需要将粘贴板的图片放在/images/下面,配置两个关键配置即可: "pasteImage.path": "${projectRoot}/images", "paste 阅读全文
posted @ 2020-05-31 21:22 Ajanuw 阅读(3992) 评论(0) 推荐(0) 编辑
摘要: 导入库 pro win32:LIBS += -lpsapi win32:LIBS += -lkernel32 获取列表 #include "mainwindow.h" #include "ui_mainwindow.h" #include <windows.h> #include <QtDebug> 阅读全文
posted @ 2020-05-08 10:32 Ajanuw 阅读(1117) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 40 下一页