https://learn.jquery.com/jquery-ui/widget-factory/extending-widgets/ https://api.jqueryui.com/jquery.widget/#method-_super To make the parent's method ...
分类:
其他好文 时间:
2019-06-28 09:15:37
阅读次数:
170
一、QtQuick多页面切换方法(1)“隐藏法”前一个视图visible设为false或者透明度opacity设为0,相当于“隐藏”了,实际还存在;要显示的视图visible设为true或者透明度opacity设为1,显示出来;(2)“动态”var component = Qt.createComp ...
分类:
其他好文 时间:
2019-06-17 10:37:38
阅读次数:
211
QML输入框同样能用正则表达式,在输入ip地址时使用正则来判断输入的正确性TextField{id:textfield_operation_ip1x:492y:120width:269height:61text:""visible:trueplaceholderText:qsTr("请输入IP地址")font.pixelSize:25focus:truevalidator:RegExpValida
分类:
其他好文 时间:
2019-06-04 11:06:03
阅读次数:
208
Extending Justin’s Guide to MATLAB in MATH 240 - Part 41. MethodWe assume you are comfortable with (and remember or can review) commands used in the e ...
分类:
其他好文 时间:
2019-05-09 19:57:21
阅读次数:
113
一、bfc布局 以下的代码加了子元素的上边距,为什么没有发生变化? <div class="wrapper"> <div class="content"></div> </div> * { padding: 0; margin: 0; } .wrapper{ position: relative; ...
分类:
Web程序 时间:
2019-05-03 09:41:43
阅读次数:
344
题目链接 题目大意:每次给你一个点,如果这个点已经存在, 那么就删除这个点,如果这个点不存在,那么就加入这个点。每次询问当前集合的扩展集合中点的个数。 扩展集合是这么得到的,如果当前集合中存在矩形的3个点,那么第4个点就会被放到扩展集合中,不断这样拓展。 思路: 首先我们要建图,横坐标相同的点连一条 ...
分类:
其他好文 时间:
2019-04-04 17:20:58
阅读次数:
168
Extending Set of Points 我们能发现, 如果把x轴y轴看成点, 那么答案就是在各个连通块里面的x轴的个数乘以y轴的个数之和。 然后就变成了一个并查集的问题, 但是这个题目里面有撤销的操作, 所以我们要把加入和撤销操作变成 这个点影响(L , R)之间的询问, 然后把它丢到线段树 ...
分类:
其他好文 时间:
2019-03-27 12:49:13
阅读次数:
175
首先推荐几篇博客 1.深入解析QML引擎, 第1部分:QML文件加载 https://www.cnblogs.com/wzxNote/p/10569535.html 2.深入解析QML引擎, 第2部分: 绑定(Bindings) https://www.cnblogs.com/wzxNote/p/1 ...
分类:
编程语言 时间:
2019-03-26 13:57:45
阅读次数:
468
1 使用QML设计登录界面 https://www.cnblogs.com/bhlsheji/p/5324871.html 2 使用QML实现下拉列表框 https://blog.csdn.net/qq_35865125/article/details/80228025 3 学习实践HELP:Deb ...
分类:
其他好文 时间:
2019-03-19 01:21:44
阅读次数:
602
QML和PyQT5联合编程 安装pyqt pip3 install PyQT5 main.QML 有了QML文件之后,我们就可以根据该文件进行python文件的编写,把里面的信号传递给python文件中 mian.py 这样,一个简单的python和Qml文件的通信的例子就完成了。 ...
分类:
其他好文 时间:
2019-03-12 10:48:04
阅读次数:
179