隐藏控件 this->face_select0->SetShow(false); this->face_select0->GetProperties()->SetLogical("Show", false); 获取控件值并转为tag_t类型 1 std::vector<TaggedObject*>o ...
分类:
其他好文 时间:
2020-07-21 14:16:21
阅读次数:
83
1、今日完成任务:(1)派车单登记功能修改 (2)派车单审核功能 2、核心源码: 1 #region 2 int iiiid = 0; 3 iiiid = operation.AddSendCar(num, company, linkMan, drivetime, beginAddress, Car ...
分类:
其他好文 时间:
2020-07-21 14:05:52
阅读次数:
79
每次创建一个页面,会有四个文件产生 生命周期函数就在后缀为.js的文件中,先来看代码 // miniprogram/pages/News/News.js Page({ /** * Page initial data */ data: { }, /** * Lifecycle function--Ca ...
分类:
微信 时间:
2020-07-20 22:59:28
阅读次数:
223
PreferenceScreen和fragment结合 一、监听事件 1.1、onPreferenceChange public boolean onPreferenceChange(Preference preference, Object objValue) { return false; } ...
分类:
移动开发 时间:
2020-07-20 22:27:20
阅读次数:
102
Mysql错误:Ignoring query to other database解决方法 今天登陆mysql show databases出现Ignoring query to other database错误,又试了几个命令和sql全部提示Ignoring query to other datab ...
分类:
数据库 时间:
2020-07-20 10:58:29
阅读次数:
110
sqlplus /nolog connect / as sysdba select * from v$flash_recovery_area_usage show parameter db_recover alter system set db_recovery_file_dest_size=50G ...
分类:
其他好文 时间:
2020-07-20 10:14:11
阅读次数:
88
idea自用设置和插件整理 设置 显示工具条 设置鼠标悬浮提示 File–>settings搜索Show quick 显示方法分隔符 (1)效果图 (2)方法 File–>settings搜索separators 忽略大小写提示 (1)效果图 idea的默认设置是严格区分大小写提示的,例如输入str ...
分类:
其他好文 时间:
2020-07-19 23:58:57
阅读次数:
128
单例:用于使用同一份实例(对象) 单例模式的实现: 1、方案一: class Foo: def __init__(self, name, age): self.name = name self.age = age def show(self): print(self.name, self.age) ...
分类:
编程语言 时间:
2020-07-19 23:52:16
阅读次数:
75
9.1、Lambda表达式 9.1.1、标准格式 (形式参数) -> {代码块} 9.1.2、使用前提 有一个接口并且接口中有且仅有一个抽象方法 9.1.3、常见应用 9.1.3.1、无参无返回值抽象方法练习 interface MyInter { void show(); } public cla ...
分类:
其他好文 时间:
2020-07-19 18:11:23
阅读次数:
80
1. v-show 根据表达式的真假值,切换元素的 display CSS属性。表达式为false时,p标签被赋予 style="display:none;" <p v-show="status">123</p> data: { status: false, }, 2. 用于条件性的渲染一块内容 表 ...
分类:
其他好文 时间:
2020-07-19 18:10:55
阅读次数:
78